gpt4 book ai didi

wpf - 访问用户控件的子控件

转载 作者:行者123 更新时间:2023-12-02 04:08:50 24 4
gpt4 key购买 nike

我创建了一个由扩展器,列表框和复选框组成的用户控件。我无法访问复选框(子控件),并且我想根据表中的行数动态生成扩展器的数量。谁能建议解决方案

最佳答案

这是非常模糊的。在大多数情况下,您只需要公开一些内部控件的属性即可,例如如果您要创建动态内容,则可以公开所用内部ItemsSourceItemTemplateListBox,以便可以从外部进行设置,例如

<UserControl x:Class="Test.UserControls.Bogus" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" Name="control">
<StackPanel>
<TextBlock Text="Lorem Ipsum:" />
<ItemsControl ItemsSource="{Binding ElementName=control, Path=ItemsSource}"
ItemTemplate="{Binding ElementName=control, Path=ItemTemplate}" />
</StackPanel>
</UserControl>

public partial class Bogus : UserControl
{
public static readonly DependencyProperty ItemsSourceProperty = ItemsControl.ItemsSourceProperty.AddOwner(typeof(Bogus));
public IEnumerable ItemsSource
{
get { return (IEnumerable)GetValue(ItemsSourceProperty); }
set { SetValue(ItemsSourceProperty, value); }
}

public static readonly DependencyProperty ItemTemplateProperty = ItemsControl.ItemTemplateProperty.AddOwner(typeof(Bogus));
public DataTemplate ItemTemplate
{
get { return (DataTemplate)GetValue(ItemTemplateProperty); }
set { SetValue(ItemTemplateProperty, value); }
}

public Bogus()
{
InitializeComponent();
}
}

用法:
<uc:Bogus ItemsSource="{Binding Data}">
<uc:Bogus.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" Foreground="Red" />
</DataTemplate>
</uc:Bogus.ItemTemplate>
</uc:Bogus>

当然,您也可以封装很多不需要公开的逻辑。

由于您需要不同数量的扩展器,因此您可能有一个 ItemsControl(与 ListBox不同,它没有选择),它已经定义了一个包含扩展器的ItemTemplate。您可能还可以创建部分模板,如我的 this answer中所示。

关于wpf - 访问用户控件的子控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6248188/

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