如何访问Windows 8.1存储中的Hubsection Datatemplate内的任何控件

时间:2014-03-02 10:53:22

标签: c# xaml windows-store-apps datatemplate windows-8.1

请告诉我如何在 Hubsection * DataTemplate *

中访问flipview控件

4 个答案:

答案 0 :(得分:12)

我不知道你是否已成功解决问题。如果你不是这样的话。

private DependencyObject FindChildControl<T>(DependencyObject control, string ctrlName)
    {
        int childNumber = VisualTreeHelper.GetChildrenCount(control);
        for (int i = 0; i < childNumber; i++)
        {
            DependencyObject child = VisualTreeHelper.GetChild(control, i);
            FrameworkElement fe = child as FrameworkElement;
            // Not a framework element or is null
            if (fe == null) return null;

            if (child is T && fe.Name == ctrlName)
            {
                // Found the control so return
                return child;
            }
            else
            {
                // Not found it - search children
                DependencyObject nextLevel = FindChildControl<T>(child, ctrlName);
                if (nextLevel != null)
                    return nextLevel;
            }
        }
        return null;
    }

用法非常简单,例如在我的情况下

ComboBox cb= FindChildControl<ComboBox>(HUB_HC, "SemanaHC") as ComboBox;

其中HUB_HC是我的HubSection名称,而SemanaHC是一个组合框,HubSection女巫也在StackPanel内部。它对我有用,而且使用简单

参考:How to access a Control inside the data template in C# Metro UI in the code behind

答案 1 :(得分:4)

处理此问题的最佳方法是在DataTemplate中设置用户控件。 UserControl将具有Flipview,因此您可以轻松访问那里的flipview。

答案 2 :(得分:1)

要访问HubSection中的任何控件,您可以执行以下操作:

var sec = MyHub.Sections[2];
var btn = sec.FindVisualChild("MyButton") as Button;

编辑:要使用FindVisualChild扩展方法,您必须使用MyToolkit project。您可以将其作为Nuget包下载并查看项目here

希望它有所帮助! :d

编辑2:可以在此处找到FindVisualChild的代码:https://mytoolkit.codeplex.com/SourceControl/latest#Shared/UI/FrameworkElementExtensions.cs

答案 3 :(得分:-1)

var sec = testHub.Sections [0]; var gridViewSelect = sec.FindName(&#34; Section4Header&#34;)as GridView;

FindName可以解决问题...