如何在列表框数据模板项中获取用户控件

时间:2014-01-23 18:31:53

标签: c# windows-phone-8

我试图在列表框中添加用户控件,但找不到合适的方法来获取它。

我在下面用于在绑定列表框中查找用户控件,但是在10个项目中找不到3或4个。

private T FindFirstElementInVisualTree<T>(DependencyObject parentElement) where T : DependencyObject
        {
            var count = System.Windows.Media.VisualTreeHelper.GetChildrenCount(parentElement);
            if (count == 0)
                return null;

            for (int i = 0; i < count; i++)
            {
                var child = System.Windows.Media.VisualTreeHelper.GetChild(parentElement, i);

                if (child != null && child is T)
                    return (T)child;
                else
                {
                    var result = FindFirstElementInVisualTree<T>(child);
                    if (result != null)
                        return result;

                }
            }
            return null;
        }

按钮代码单击以查找用户控件。

private void Button_Click(object sender, RoutedEventArgs e)
        {
            if (!downloadClicked)
            {
                downloadClicked = true;
                SuraWithProgressBar prg = null;
                ListBoxItem item = null;
                for (int rowIndex = 0; rowIndex < lsbQuranData.Items.Count; rowIndex++)
                {
                    item = this.lsbQuranData.ItemContainerGenerator.ContainerFromIndex(rowIndex) as ListBoxItem;
                    if (item != null)
                    {
                        prg = FindFirstElementInVisualTree<SuraWithProgressBar>(item);
                        if (prg != null)
                        {
                            //Do Somthing
                            prg.addButtonClickInterface(this);
                        }
                    }
                }
            }
            else
                MessageBox.Show("Please wait, downloading...");
        }

正如我在10中提到的,它找不到3-4项。我正在寻找在listbox中找到我的用户控件的正确方法。

谢谢!

1 个答案:

答案 0 :(得分:0)

经过多次头痛后,我在以下两个链接中找到了解决方案:

WP7 - VisualTreeHelper to loop through all ListBox Items

http://msdn.microsoft.com/en-us/library/windows/apps/jj709920.aspx

将模板添加到列表框并将SerializeStackPanel更改为StackPanel,问题就解决了。请确保将其添加到ItemTemplate部分。