请帮帮我:
如果我在HubSection中有一个TextBox,如果我有TextBox的Grid在DataTemplate中,我怎么能从中获取数据?
<Hub Style="{StaticResource HubStyle1}">
<Hub.Header>
<!-- Some stuff here -->
</Hub.Header>
<HubSection Width="731" Style="{StaticResource HubSectionStyle1}">
<DataTemplate>
<Grid FlowDirection="RightToLeft" Margin=" 0,10,0,0" >
<TextBox
Grid.Row="0"
Grid.Column="1"
Style="{StaticResource AddTextBlockStyle}" />
</Grid>
</DataTemplate>
</HubSection>
</Hub>
答案 0 :(得分:4)
处理任何元素的Loaded
事件,sender参数将是该元素。保存参数以供以后访问。
答案 1 :(得分:0)
通过这个问题 How do I access a control inside a XAML DataTemplate
如果您尝试访问模板内的元素