在RichEditBox for Windows商店应用程序中插入列表

时间:2016-09-04 14:59:29

标签: windows list windows-runtime uwp richeditbox

我基于RichEditBox控件为Windows商店应用程序(WinRT)开发文本编辑器。 RichEditBox使用ITextParagraphFormat进行段落操作,使用ListAlignment,ListLevelIndex以及项目符号和编号列表的其他属性。 我没有找到任何样本来将项目符号或编号列表插入RichEditBox。 如何使用ITextParagraphFormat将列表添加到RichEditBox?

1 个答案:

答案 0 :(得分:0)

您需要为ITextParagraphFormat设置ITextParagraphFormat.ListType属性。对于项目符号,将ListType属性设置为MarkerType.Bullet,对于数字,将ListType设置为MarkerType.Arabic。更多类型请参考MarkerType枚举以选择您想要的其他列表类型。

以下是有关将项目符号和数字添加到您可以测试的RichEditBox中所选段落列表的示例。

XAML代码

 <RichEditBox x:Name="Richbox"  Height="400" Margin="40" >          
 </RichEditBox>    
 <Button x:Name="BtnSetbullet" Content="set bullet  to richeditbox" Click="BtnSetbullet_Click"></Button>
 <Button x:Name="BtnSetNumber" Content="set number  to richeditbox" Click="BtnSetNumber_Click"></Button>

背后的代码

 private void BtnSetbullet_Click(object sender, RoutedEventArgs e)
 {         
     Windows.UI.Text.ITextSelection selectedText = Richbox.Document.Selection;
     ITextParagraphFormat paragraphFormatting = selectedText.ParagraphFormat;

     paragraphFormatting.ListType = MarkerType.Bullet;          
     selectedText.ParagraphFormat = paragraphFormatting;

 } 
 private void BtnSetNumber_Click(object sender, RoutedEventArgs e)
 {
     Windows.UI.Text.ITextSelection selectedText = Richbox.Document.Selection;
     ITextParagraphFormat paragraphFormatting = selectedText.ParagraphFormat;      
     paragraphFormatting.ListType = MarkerType.Arabic; 
     selectedText.ParagraphFormat = paragraphFormatting;           
 }