从 Windows 移动应用程序中的组合框获取输入

Take an input from a combo box in Windows Mobile Applications

我在移动应用程序中有以下组合框

<ComboBox name="cmb_tax" Grid.Row="2" Grid.Column="1">
      <ComboBoxItem content="10%" />
      <ComboBoxItem content="20%" />
      <ComboBoxItem content="30%" />
</ComboBox>

并希望将由此传递的值传递给字符串变量。提前谢谢你。

((ComboBoxItem)cmb_tax.SelectedItem).Content.ToString();