我想知道是否有办法将组合框的标记值设置为非字符串数据类型。原因是我想将字节值作为标记值放置到控件中,我知道我可以以编程方式执行此操作,但我试图确认这是否可以使用声明性语句来完成。
<ComboBox Height="23" HorizontalAlignment="Left" Margin="90,37,0,0" Name="cmbReceiverBytes" VerticalAlignment="Top" Width="120">
<ComboBoxItem Content="0xFF DefaultValue" Tag="255" />
....
</ComboBox>
我正在尝试各种组合,其中之一是进行解析,但它不起作用。我想与其他人确认这是否可能。
<ComboBoxItem Content="0xFF DefaultValue" Tag="{Integer.ParseInt(255)}" />