gpt4 book ai didi

c# - RadioButton ContentStringFormat 不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 20:08:04 26 4
gpt4 key购买 nike

我一直在努力让下面的代码正常工作。绑定(bind)有效,但第一个中的 ContentStringFormat 或第二个中的 StringFormat 似乎不起作用。

<RadioButton Content="{Binding ClientCode}" ContentStringFormat="{}{0} copy"
IsChecked="{Binding Path= FilterType,
Converter={StaticResource EBConverter},
ConverterParameter={x:Static wordMerge:FilterType.ClientCopy}}"
Width="90"/>

上面的代码只返回绑定(bind)值说“ABC”,但我期待“ABC copy”

 <RadioButton IsChecked="{Binding Path= FilterType,
Converter={StaticResource EBConverter},
ConverterParameter={x:Static wordMerge:FilterType.ClientCopy}}"
Width="90">
<RadioButton.Content>
<TextBlock Text="{Binding ClientCode, StringFormat={}{0} copy}"/>
</RadioButton.Content>
</RadioButton>

上面的代码没有返回任何绑定(bind)值。

已更新在这两种情况下,字符串副本都不会在设计时或运行时显示。

最佳答案

试试这个

StringFormat='{}copy {0}'}"

测试过

<TextBlock Text="{Binding Path=Str, Mode=OneWay, StringFormat='{}{0} copy'}"/>   

@Kiru 它对我有用

<RadioButton Content="{Binding Path=Str, Mode=OneWay}"  ContentStringFormat='{}{0} copy'/>
<RadioButton>
<TextBlock Text="{Binding Path=Str, Mode=OneWay, StringFormat='{}{0} copy'}"/>
</RadioButton>

关于c# - RadioButton ContentStringFormat 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21785407/

26 4 0
文章推荐: matlab - 设置大于屏幕的 matlab 图
文章推荐: html - CSS HTML 标 checkout 现在导航栏上
文章推荐: MATLAB:控制核心/线程数
文章推荐: python - 如何分割大型 XBRL 文件?
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com