2017-07-02 102 views
0

我在移動應用採取從組合框中輸入在Windows Mobile應用程序

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

以下組合框,並希望採取從這個傳遞給一個字符串變量的值。先謝謝你。

回答

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

非常感謝... –

+0

另外如何採取從輸入並分配到一個變量?它是否像'DateTime in = this.dp.Value;'? –

相關問題