ユーザーが選択した ComboBoxItem から Uid を取得するにはどうすればよいですか?
XAML に次のコードがあります。
<ComboBox x:Name="cmbCat" HorizontalAlignment="Left" Margin="210,163,0,0" VerticalAlignment="Top" Width="183" Background="White">
<ComboBoxItem Content="Computing and IT" Uid="2001"/>
<ComboBoxItem Content="Electrical" Uid="2002"/>
<ComboBoxItem Content="Stationery" Uid="2003"/>
<ComboBoxItem Content="Building" Uid="2004"/>
</ComboBox>
ComboBoxでユーザーが選択した特定のUidを取得したいと思います。