C# WPF文本框绑定字符串格式€ [已关闭]

egmofgnx  于 2023-03-19  发布在  C#
关注(0)|答案(1)|浏览(101)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
在我的项目中,我需要使用XAML文本框绑定将我的金额转换为€ 0.00格式。
我希望有人能帮助我。
你好米卡
我试了各种各样的,但都不起作用。

niwlg2el

niwlg2el1#

试试这个,只要设置您选择的文化,它应该正确显示我还没有测试的代码写,但希望它有帮助。

<TextBox Text="{Binding Amount, UpdateSourceTrigger=PropertyChanged, ConverterCulture='de-DE', StringFormat=C}" />

相关问题