SIL.FieldWorks.Common.Controls.ChooserTreeView.UpdateSelectedLabel C# (CSharp) Method

UpdateSelectedLabel() public method

public UpdateSelectedLabel ( ) : void
return void
		public void UpdateSelectedLabel()
		{
			if (m_lblSelectedCategories != null)
			{
				m_lblSelectedCategories.Text = (SelectedItems.Count == 0 ?
					FwCoreDlgs.Properties.Resources.kstidNoPossibilitySelectedText :
					SelectedItems.ToString(", "));
			}
		}