System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs)

Here are the examples of the csharp api class System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

7 Examples 7

1. Example

Project: gong-shell
Source File: FileFilterComboBox.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);

            if (!m_IgnoreSelectionChange)
            {
                if (SelectedItem != null)
                {
                    Filter = ((FilterItem)SelectedItem).Filter;
                }
            }
        }

2. Example

Project: gong-shell
Source File: FileFilterComboBox.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);

            if (!m_IgnoreSelectionChange)
            {
                if (SelectedItem != null)
                {
                    Filter = ((FilterItem)SelectedItem).Filter;
                }
            }
        }

3. Example

Project: InnovatorAdmin
Source File: DataGridViewListColumn.cs
protected override void OnTextChanged(EventArgs e)
      {
        // Notify the DataGridView that the contents of the cell
        // have changed.
        valueChanged = true;
        this.EditingControlDataGridView.NotifyCurrentCellDirty(true);
        base.OnTextChanged(e);
      }

4. Example

Project: gong-shell
Source File: FileNameComboBox.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);
            if (m_TryAutoComplete)
            {
                try
                {
                    AutoComplete();
                }
                catch (Exception) { }
            }
        }

5. Example

Project: gong-shell
Source File: FileNameComboBox.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);
            if (m_TryAutoComplete)
            {
                try
                {
                    AutoComplete();
                }
                catch (Exception) { }
            }
        }

6. Example

Project: LiveSplit
Source File: RunEditorDialog.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);

            _dropDown.AutoClose = false;

            currentText = Text;
            TryReleaseRefreshDropDown();
        }

7. Example

Project: SAI-Editor
Source File: SearchableComboBox.cs
protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);

            if (OriginalItems == null)
                return;

            Items.Clear();

            if (Text == String.Empty)
            {
                foreach (string item in OriginalItems)
                    Items.Add(item);

                return;
            }

            foreach (string item in OriginalItems)
                if (item.ToLower().Contains(item.ToLower()))
                    Items.Add(item);
        }