gpt4 book ai didi

wpf - 带字体粗细的 StringFormat

转载 作者:行者123 更新时间:2023-12-04 13:40:33 25 4
gpt4 key购买 nike

我正在使用 StringFormat 来显示一些绑定(bind)数据并且工作正常。

<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="Name {0} | Id ({1})">
<Binding Path="Name" />
<Binding Path="Id"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>

我想要 Id值(请参阅 XAML)为粗体。这该怎么做?

最佳答案

试试下面的一个。

   <TextBlock Margin="12,0,355,13" Grid.Row="2" TextAlignment="Left">            
<Run Text="Name " />
<Run Text="{Binding EmpName}" TextDecorations="Underline"/>
<Run Text=" | " />
<Run Text="Id "/>
<Run Text="{Binding Id}" FontWeight="Bold"/>
</TextBlock>

关于wpf - 带字体粗细的 StringFormat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17019664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com