gpt4 book ai didi

wpf - 如何在 WPF 自定义控件中填充集合控件?

转载 作者:行者123 更新时间:2023-12-01 01:24:55 25 4
gpt4 key购买 nike

我正在学习在 WPF 中创建自定义控件的来龙去脉。到目前为止我理解的概念:

  1. 代码定义控件的行为。
  2. 模板定义控件的外观和视觉效果。
  3. 您可以将模板的元素绑定(bind)到底层控制对象的属性。

如果模板有多个集合控件,例如 StackPanels,您如何绑定(bind)它们以便它们由底层集合填充?我的第一个想法是利用每个 StackPanelDataContext,但我无法让它发挥作用。我觉得我缺少一个可以为我解决这个问题的关键概念。

最佳答案

您想在这些 StackPanel 中显示什么?面板用于排列项目。如果要显示项目集合,您可能希望使用 ItemsControl(或多种类型的 ItemsControl 之一)。 ItemsControl 非常强大 - 您可以指定项目的显示方式以及显示它们的面板的显示方式。您甚至可以将面板指定为 StackPanel。例如,

    <ItemsControl ItemsSource="{Binding ElementName=root, Path=List1}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<!-- Template defines the panel -->
<StackPanel IsItemsHost="True" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<!-- Template defines each item -->
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>

然后您想绑定(bind)到一个项目列表,这使用 ItemsControl 非常容易!在使用自定义控件的情况下,您可能希望在代码隐藏中公开控件本身的依赖属性,然后绑定(bind)到 XAML 中的属性。例如,您可以像这样为您拥有的各种列表创建依赖属性:

        public static readonly DependencyProperty List1Property = DependencyProperty.Register(
"List1",
typeof(IList<string>),
typeof(MyControl));

public static readonly DependencyProperty List2Property = DependencyProperty.Register(
"List2",
typeof(IList<string>),
typeof(MyControl));

然后您可以绑定(bind) ItemsControls 的 ItemsSource 属性:

    <ItemsControl ItemsPanel="..." ItemsSource="{Binding ElementName=root, Path=List1}" />
<ItemsControl ItemsPanel="..." ItemsSource="{Binding ElementName=root, Path=List2}" />

(在这种情况下,我假设自定义控件有一个 x:Name="root")

希望对您有所帮助!

关于wpf - 如何在 WPF 自定义控件中填充集合控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6009463/

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