SIL.FieldWorks.LexText.Controls.LinkMSADlg.HandleMatchingSelectionChanged C# (CSharp) Méthode

HandleMatchingSelectionChanged() protected méthode

protected HandleMatchingSelectionChanged ( ) : void
Résultat void
		protected override void HandleMatchingSelectionChanged()
		{
			m_fwcbFunctions.Items.Clear();
			if (m_selObject == null)
				return;
			m_fwcbFunctions.SuspendLayout();
			foreach (var msa in ((ILexEntry)m_selObject).MorphoSyntaxAnalysesOC)
				m_fwcbFunctions.Items.Add(new LMsa(msa));
			if (m_fwcbFunctions.Items.Count > 0)
				m_fwcbFunctions.SelectedItem = m_fwcbFunctions.Items[0];
			m_btnOK.Enabled = m_fwcbFunctions.Items.Count > 0;
			m_fwcbFunctions.ResumeLayout();
		}