SIL.FieldWorks.IText.ConcordanceControl.DisableDetailedSearchControls C# (CSharp) Метод

DisableDetailedSearchControls() приватный Метод

Don't want all the radio buttons and checkboxes active when searching by possibility list item.
private DisableDetailedSearchControls ( ) : void
Результат void
		private void DisableDetailedSearchControls()
		{
			m_rbtnAtEnd.Enabled = false;
			m_rbtnAtStart.Enabled = false;
			m_rbtnWholeItem.Enabled = false;
			m_rbtnAnywhere.Enabled = false;
			m_rbtnUseRegExp.Enabled = false;
			// LT-6966/10312 reopened. Don't confuse user with ws options when they just want to find
			// the tag or category they used. The list already shows BestAnalysisAlternative. We will
			// search for that too.
			m_cbWritingSystem.Enabled = false;
			// Again, don't confuse the user by making this look like a string match.
			// We want these disabled for list item matching.
			m_chkMatchDiacritics.Enabled = false;
			m_chkMatchCase.Enabled = false;
		}