gpt4 book ai didi

c# - 对于带有列表框的用户控件,如何将所选项目公开到父页面?

转载 作者:行者123 更新时间:2023-11-30 20:11:14 24 4
gpt4 key购买 nike

我有一个简单的用户控件,它在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com