WPF 查找ListBox等DataTemplate下的子控件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 查找ListBox等DataTemplate下的子控件相关的知识,希望对你有一定的参考价值。
做项目时找到的方法,引用自http://bbs.csdn.net/topics/390890082,觉得挺好的,保存下来
获取在ListBox中的DataTemplate下的每一个button对象的方法如下:
private T SearchVisualTree<T>(DependencyObject tarElem) where T : DependencyObject
{
if (tarElem != null)
{
var count = VisualTreeHelper.GetChildrenCount(tarElem);
if (count == 0)
return null;
for (int i = 0; i < count; ++i)
{
var child = VisualTreeHelper.GetChild(tarElem, i);
if (child != null && child is T)
{
return (T)child;
}
else
{
var res = SearchVisualTree<T>(child);
if (res != null)
{
return res;
}
}
}
return null;
}
private void GetBtn()
{
for (int i = 0; i < this.ListBoxName.Items.Count; i++)
{
ListBoxItem itemtemp = this.ListBoxName.ItemContainerGenerator.ContainerFromIndex(i) as ListBoxItem;
Button buttonobject = SearchVisualTree<Button>(itemtemp);
if (buttonobject == null) break;
buttonobject.Margin = new Thickness(10, 10, 10, 10);
}
}
以上是关于WPF 查找ListBox等DataTemplate下的子控件的主要内容,如果未能解决你的问题,请参考以下文章
WPF:带有 WrapPanel 的 ListBox,垂直滚动问题
UI响应性并使用WPF中的“SelectedItem”ListView / ListBox
wpf 中scrollviewer 中放置个LISTBOX,当焦点在LISTBOX时候,滚动鼠标不响应Scrollviewer的鼠标滚动