EditingCommands.ToggleNumbering 和 EditingCommands.ToggleBullets 有不同的缩进
EditingCommands.ToggleNumbering and EditingCommands.ToggleBullets have different indents
我正在尝试基于 richtextbox 控件创建一个非常简单的富文本编辑器控件,并希望数字和项目符号具有相同的缩进。
在 EditCommands 中使用 togglebullets 和 togglenumbering 命令,我得到的数字插入的缩进比项目符号大得多。有没有办法让他们排队?
或者至少给我解释一下为什么会这样?
感谢您的帮助!
在搜索另一个问题时发现了这个:我的数字与文本的字体不同 ;)
不过,我用它来调整列表的 margins/indents - 你必须把它放在 flowDocument 之前的某个地方...
<RichTextBox.Resources>
<Style TargetType="{x:Type List}">
<Setter Property="Margin" Value="0" />
<Setter Property="MarkerOffset" Value="5" />
<Setter Property="Padding" Value="15,0,0,0" />
</Style>
<Style TargetType="{x:Type ListItem}">
<Setter Property="Margin" Value="0" />
</Style>
</RichTextBox.Resources>
干杯,斯蒂芬
我正在尝试基于 richtextbox 控件创建一个非常简单的富文本编辑器控件,并希望数字和项目符号具有相同的缩进。
在 EditCommands 中使用 togglebullets 和 togglenumbering 命令,我得到的数字插入的缩进比项目符号大得多。有没有办法让他们排队? 或者至少给我解释一下为什么会这样?
感谢您的帮助!
在搜索另一个问题时发现了这个:我的数字与文本的字体不同 ;) 不过,我用它来调整列表的 margins/indents - 你必须把它放在 flowDocument 之前的某个地方...
<RichTextBox.Resources>
<Style TargetType="{x:Type List}">
<Setter Property="Margin" Value="0" />
<Setter Property="MarkerOffset" Value="5" />
<Setter Property="Padding" Value="15,0,0,0" />
</Style>
<Style TargetType="{x:Type ListItem}">
<Setter Property="Margin" Value="0" />
</Style>
</RichTextBox.Resources>
干杯,斯蒂芬