为简单起见,我将以下缩写
<ItemsControl ItemSource="{Binding enumerableList}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding displayName, Mode=OneWay}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
如何获得它,以便我的TextBox在绑定(bind)到它的文本前面显示一个项目符号点?所需格式:
最佳答案
您可以将 BulletDecorator
与TextBlock一起使用。例子:
<BulletDecorator>
<BulletDecorator.Bullet>
<Ellipse Height="10" Width="10" Fill="Blue"/>
</BulletDecorator.Bullet>
<TextBox Text="{Binding displayName, Mode=OneWay}" />
</BulletDecorator>
关于c# - 如何在WPF中的文本绑定(bind)前面添加项目符号点?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26258450/