Cath Picker所选项目=空Xamarin.forms

时间:2019-04-23 18:55:42

标签: c# xamarin xamarin.forms picker

如果用户不选择picker label文本中的项目,我想变成这样:错误!条件不完全!

我尝试了

        try
        {
            picker.Items[picker.SelectedIndex] = null;
        }

        catch (System.ArgumentNullException)
        {
            Error.IsVisible = true;
            Error.Text = AppResources.ERROR1;
        }

但是它不起作用!请帮我。谢谢!

1 个答案:

答案 0 :(得分:1)

如果SelectedIndex为-1,则未选择任何项目

if (picker.SelectedIndex < 0) 
{
  Error.IsVisible = true;
  Error.Text = AppResources.ERROR1;
}