作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的用户控件,它在 AutoCompleteBox 周围包装了一些逻辑。不过,这个问题可能适用于任何 ItemsControl 控件,例如下拉列表或列表框。
<UserControl>
<Grid Background="White">
<sdk:AutoCompleteBox Name="myACB" ItemsSource="{Binding myData}" />
</Grid>
</UserControl>
我想在使用该控件的父级中公开 AutoCompleteBox 的 SelectedItem
属性。不过,我的用户控件正在使用 View 模型作为其数据上下文。否则,我想我可以将 SelectedItem 绑定(bind)到用户控件的依赖属性。
我需要能够让父级检测到子级自动完成框所选项目何时更改。我该怎么做?
最佳答案
只需创建一个 dependency property在 UserControl 中并将其与您的内部控件绑定(bind),如下所示:
1) 在CustomControl中添加一个依赖属性:
public System.Collections.IEnumerable ItemsSource
{
get { return (System.Collections.IEnumerable)GetValue(ItemsSourceProperty); }
set { SetValue(ItemsSourceProperty, value); }
}
// Using a DependencyProperty as the backing store for ItemsSource. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ItemsSourceProperty =
DependencyProperty.Register("ItemsSource", typeof(System.Collections.IEnumerable), typeof(UserControl1), new UIPropertyMetadata(null));
2) 将内部控件与依赖属性绑定(bind):
<UserControl ... x:Name="control" ... >
<ListBox ItemsSource="{Binding ElementName=control, Path=ItemsSource}" />
编辑:实现 ItemsSource
关于c# - 对于带有列表框的用户控件,如何将所选项目公开到父页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4038002/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!