0
所以基本上我有一個包含另一個對象列表的對象列表。可以說我有一個對象列表Class
。並且類包含一個Students
的列表。每個學生都有一個屬性Name
作爲一個簡單的字符串。將複雜數據綁定到ItemsControl
所以基本上我想要的是以下內容: 用戶可以使用組合框選擇一個類。
<ComboBox ItemsSource="{Binding Path=Classes}" DisplayMemberPath="Name" />
這是行得通的。
從組合框選擇一個項目後,用戶將看到該類別每個學生的名單(還記得財產Name
在Students
)
我創建用於該目的的簡單的ItemsControl。
<ItemsControl ItemsSource="{Binding Classes}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Label Content="Name of the Student">
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
我的問題是:我如何訪問我的標籤中的學生姓名?