string tmp = (cbFileSize.SelectedValue as ComboBoxItem) .Content.ToString ();
or
string tmp = (cbFileSize.SelectedItem as ComboBoxItem) .Content.ToString ();
( ):
, , . ComboBoxItems ComboBox, Item selectedValue ComboBox:
<ComboBox x:Name="comboBox">
<ComboBoxItem>15</ComboBoxItem>
<ComboBoxItem>16</ComboBoxItem>
<ComboBoxItem>17</ComboBoxItem>
</ComboBox>
, - . ComboBoxItem , , ( ).
, , , , , ( ints), ComboBox ComboBox.