请帮我:

如果我在HubSection中有一个TextBox,如果拥有TextBox的网格位于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事件,并且sender参数将是该元素。保存参数以供以后访问。

09-25 20:45