本文介绍了访问 HubSection 内的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请帮帮我:
如果我在 HubSection 中有一个 TextBox,如果我拥有 TextBox 的 Grid 在 DataTemplate 中,我如何从中获取数据?,
If I have a TextBox in a HubSection, how I can get data from it if the Grid that I have the TextBox is in a 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>
推荐答案
处理任何元素的 Loaded
事件,发送方参数将是该元素.保存参数以备后用.
handle the Loaded
event for any of the elements and the sender parameter will be that element. Save the parameter for later access.
这篇关于访问 HubSection 内的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!