在 .cs .net silverlight 代码中绑定 SelectedIndexProperty 的 XAML 等效项是什么?

发布于 2024-08-19 16:22:41 字数 601 浏览 4 评论 0原文

我一直在 silverlight 中使用绑定,并且已经弄清楚如何在代码中绑定,但更愿意将绑定保留在 XAML 中。

这是在我的 .cs 文件中运行的代码:

  System.Windows.Data.Binding IDBinding = new System.Windows.Data.Binding("ID");
            IDBinding.Source = MyTrans;
            IDBinding.Mode = System.Windows.Data.BindingMode.TwoWay;
            cbComboBox.SetBinding(ComboBox.SelectedIndexProperty, IDBinding);

这是我的 XAML 行:

<ComboBox x:Name="cbComboBox"   Margin="4,20,6,0" Foreground="#FFD41D1D" Height="25" VerticalAlignment="Top">

如何在 XAML 中表达相同的内容?

谢谢!

-射线

I have been playing with bindings in silverlight, and have figured out how to bind in code, but would prefer to keep the binding in the XAML.

This is the code that works in my .cs file:

  System.Windows.Data.Binding IDBinding = new System.Windows.Data.Binding("ID");
            IDBinding.Source = MyTrans;
            IDBinding.Mode = System.Windows.Data.BindingMode.TwoWay;
            cbComboBox.SetBinding(ComboBox.SelectedIndexProperty, IDBinding);

this is my XAML line:

<ComboBox x:Name="cbComboBox"   Margin="4,20,6,0" Foreground="#FFD41D1D" Height="25" VerticalAlignment="Top">

How do I express the same thing in XAML?

Thanks!

-Ray

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

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

发布评论

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

评论(1

南城旧梦 2024-08-26 16:22:41

假设您将 ComboBox 的父控件(或组合框本身)的 DataContext 设置为 MyTrans,则应执行以下操作:

<ComboBox x:Name="cbComboBox" SelectedIndex="{Binding ID, Mode=TwoWay}" />

Assuming that you set the DataContext of the parent control of the ComboBox (or on the combobox itself) to MyTrans, the following should do it:

<ComboBox x:Name="cbComboBox" SelectedIndex="{Binding ID, Mode=TwoWay}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文