Regards, Raja, USA
public static class Extensions { public static bool IsSelected(this ListBox lst) { return lst.SelectedValue != null ? (lst.SelectedValue > 0) : false; } }
if(lst.IsSelected()) { MessageBox.Show("ListBOx is Selected"); }
Login to post response