我想在GridView項目中獲取TextBox的文本。在GridView中獲取TextBox的內容項目
這裏是我的代碼:
XAML:
<GridView x:Name="inventoryGridView" Margin="70,40,10,10" SelectionChanged="inventoryGridView_SelectionChanged">
<GridView.ItemTemplate>
<DataTemplate>
<StackPanel Margin="0,0,0,0" Width="121" Height="128" VerticalAlignment="Top" Background="#19000000">
<TextBox Text="{Binding ItemId}" Name="InvItemId"/>
...
</StackPanel>
</GridView.ItemTemplate>
</GridView>
我怎麼能這樣做?
你想從codeBehind獲取它嗎? –
在'SelectionChanged'事件中,添加'var index = inventoryGridView.SelectedIndex; var a = Items [index] .ItemId;'在代碼中,Items是爲GridView的ItemsSource設置的集合。 –