大家好。我有以下问题:
我有一个在 XAML 中声明的 x:Name="Backgroundlist" 的列表选择器,它工作正常。
其项目声明如下:
public MainPage()
{
InitializeComponent();
Backgroundlist.Items.Add("photo");
Backgroundlist.Items.Add("Bing");
}
但是,下面的代码没有完成它的工作(即它没有显示 MessageBox):
private void Backgroundlist_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (Backgroundlist.SelectedItem.Equals("photo"))
{
MessageBox.Show("photo");
}
if (Backgroundlist.SelectedItem.Equals("Bing"))
{
MessageBox.Show("Bing");
}
}
似乎是什么问题?谢谢!
PS我没有例外