2011-05-17 72 views
0

獲得按鈕點擊選定的項目我有一個列表框Listbox selectionmode =擴展綁定到數據表。需要使用MVVM光

<ListBox x:Name="lbFamilies" Margin="41,45,38.25,111" ToolTip="Select the tables to seed" ItemsSource="{Binding ManTntFmly.FmlyList}" ItemTemplate="{StaticResource listBoxTemplate}" SelectionMode="Extended"/> 

的FmlyList是使用數據綁定綁定的DataTable。

  1. 我需要找出所有已經從 列表框中選擇的項目 。我如何使用 視圖模型來做到這一點?

  2. 另外,在選擇過程中,我如何獲得密鑰的 而不是 ?

回答