SIL.FieldWorks.Common.Widgets.TreeCombo.SetComboTextAndFocus C# (CSharp) Method

SetComboTextAndFocus() private method

Sets the text and focuses the control FWNX-270: renamed from SetComboText to make it clear that this method causes a focus
private SetComboTextAndFocus ( TreeNode node ) : void
node System.Windows.Forms.TreeNode
return void
		private void SetComboTextAndFocus(TreeNode node)
		{
			SetComboText(node);
			m_comboTextBox.Select();
			m_comboTextBox.SelectAll();
		}