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

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

2 Examples 7

1. Example

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

            if (!_ignoreTextChanged)
            {
                _originalFormText = Text;
            }
        }

2. Example

Project: InnovatorAdmin
Source File: FormBase.cs
protected override void OnTextChanged(EventArgs e)
    {
      base.OnTextChanged(e);
      if (!_themeInitialize) return;
      if (TitleLabel != null) TitleLabel.Text = Text;
    }