gpt4 book ai didi

wpf - 在 WPF 中访问 DataTemplate 中的项目

转载 作者:行者123 更新时间:2023-12-04 16:47:03 24 4
gpt4 key购买 nike

我想知道在 WPF 中您是否能够获得数据模板对象的实际实例。例如在下面的情况下:

<UserControl>
<UserControl.Resources>
<DataTemplate x:Key="MyTemplate">
<CustomControl ></CustomControl>
</DataTemplate>
</UserControl.Resources>

<ListBox DataTemplate="{StaticResource MyTemplate}"></ListBox>
</UserControl>

假设 CustomControl 有一个 CustomEvent 和一个公共(public) CustomMethod。我想在用户控件中访问该事件和公共(public)方法。这可能吗?我怎么能做到这一点?在此先感谢您的帮助。

干杯,

尼禄

最佳答案

您需要找到持有 ListBox 的 ContentPresenter(通过导航 VisualTree),然后使用

myDataTemplate.FindName("myCustomControl", myListBox);

MSDN 上有一个例子:http://msdn.microsoft.com/en-us/library/bb613579.aspx .

关于wpf - 在 WPF 中访问 DataTemplate 中的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1575300/

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