如何在我的View代码中访问数据模板中的Grid

时间:2014-08-04 12:26:52

标签: wpf

我有一些像这样的XAML

<Grid Name="LayoutRoot">
    <TabControl ItemsSource="{Binding Path=Plugins}" DisplayMemberPath="Name" 
                SelectedIndex="{Binding Path=CurrentProductIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                >

        <TabControl.ContentTemplate>
            <DataTemplate>
                <Grid Name="PluginRegion">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto"></RowDefinition>
                        <RowDefinition></RowDefinition>
                    </Grid.RowDefinitions>


                </Grid>

            </DataTemplate>
        </TabControl.ContentTemplate>

    </TabControl>
</Grid>

我需要在我的程序代码中访问名为“PluginRegion”的Grid(目标是在运行时将子项添加到此网格中)。
我如何访问此网格,因为没有创建成员。

0 个答案:

没有答案