2

XAML:

<toolkit:ListPicker x:Name="profession" SelectionChanged="ListPicker_SelectionChanged">
    <toolkit:ListPickerItem Content="Value1" />
</toolkit:ListPicker>

如何ListPickerItem在 C# 代码中添加要使用的密钥?

我想要的类似于控件的 HTMLvalue属性option

我想要的示例:(C# 代码,OFC 不工作..)

int a = profession.SelectedItem.Key;
4

2 回答 2

2

您可以使用该Tag物业。

<toolkit:ListPickerItem Content="Value1" Tag="1"/>
var a = ((ListPickerItem)profession.SelectedItem).Tag;
于 2013-05-29T12:40:45.500 回答
0

如果您在应用首次加载时尝试执行此操作,则在 MainPage.xaml.cs 文件中,将其包含在构造函数中:

public MainPage(){
     InitializeComponent();

     profession.Items.Add("Value2"); // Add this line here
}

否则,把这条线放在你需要的地方。

于 2013-05-29T12:27:21.060 回答