RSSWeatherLayer.WeatherItemSelectionDlg.txtSelect_TextChanged C# (CSharp) Method

txtSelect_TextChanged() private method

selection textbox text change event handler
private txtSelect_TextChanged ( object sender, System e ) : void
sender object
e System
return void
		private void txtSelect_TextChanged(object sender, System.EventArgs e)
		{
      //clear the items of the listbox
      lstWeatherItemNames.Items.Clear();

      //spawn a thread to populate the list with items that match the selection criteria
      Thread t = new Thread(new ThreadStart(PopulateSubListProc));
			t.Start();
		}