Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clear a combobox in WPF

Tags:

c#

combobox

wpf

How do I clear a combobox in WPF? I have tried this code:

 private void btClear1_Click(object sender, RoutedEventArgs e)
    {

        txtID.Text = String.Empty;
        this.cbType.SelectedItem = -1;
    }
like image 511
user2631662 Avatar asked Oct 14 '13 14:10

user2631662


1 Answers

cbTypion.SelectedItem = -1 to clear the selection cbType.Items.Clear() to clear all the items

like image 139
Fred Avatar answered Oct 09 '22 11:10

Fred