c# 中判断listbox没有选择怎么写啊if(listbox1 ){}

来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/24 00:30:19
c#中判断listbox没有选择怎么写啊if(listbox1){}c#中判断listbox没有选择怎么写啊if(listbox1){}c#中判断listbox没有选择怎么写啊if(listbox1)

c# 中判断listbox没有选择怎么写啊if(listbox1 ){}
c# 中判断listbox没有选择怎么写啊
if(listbox1 )
{
}

c# 中判断listbox没有选择怎么写啊if(listbox1 ){}
if (listbox1.SelectedValue == "" || listbox1.SelectedValue == string.Empthy)
{
//未选择
}
判断选中的项的值是否有值,如果为空则说明未选择,如果不为空,说明已选择