2
我添加了這個控件,我如何動態地爲它分配標籤和內容?在Windows Store應用程序中動態填充組合框
<ComboBox x:Name="cbTst" SelectedValue="{Binding SelectedDirection, Mode=TwoWay}" SelectedValuePath="Tag" Canvas.Left="82" Canvas.Top="19">
<ComboBoxItem Content="North" Tag="0"/>
<ComboBoxItem Content="East" Tag="90"/>
<ComboBoxItem Content="South" Tag="180"/>
<ComboBoxItem Content="West" Tag="270"/>
</ComboBox>
這是組合框的只是內容,但問題是,我們如何與它綁定價值和內容。 – naCheex