XAML/Silverlight 4.0 复杂表单字段绑定

发布于 2024-10-12 19:56:07 字数 354 浏览 1 评论 0 原文

我在 Silverlight 中有一个数据网格,其中以下字段绑定到 lastPrice

<data:DataGridTextColumn Header="Last Price" SortMemberPath="lastPrice" Binding="{Binding lastPrice}" IsReadOnly="True"/>

问题是,有时 lastPrice 小于 0,在这种情况下我想显示其他内容(TBD) code>) 字段中的值而不是 lastPrice 的实际值。有没有一种简单的方法可以在 XAML 中执行此操作?

谢谢!

I have a datagrid in Silverlight, with the following field bound to lastPrice:

<data:DataGridTextColumn Header="Last Price" SortMemberPath="lastPrice" Binding="{Binding lastPrice}" IsReadOnly="True"/>

The problem is, occasionally lastPrice is less than 0, and in those cases I want to display something else (TBD) in the field instead of what lastPrice actually is. Is there an easy way for me to do this inside the XAML?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剑心龙吟 2024-10-19 19:56:07

是的,有一个简单的方法可以做到这一点。您可以通过使用 转换器

Yes, there is an easy way to do this. You can achieve this by using a Converter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文