System.Windows.Forms.ContainerControl.OnFontChanged(System.EventArgs)

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

37 Examples 7

1. Example

Project: ContinuousTests
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

2. Example

Project: ContinuousTests
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

3. Example

Project: ContinuousTests
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

4. Example

Project: ContinuousTests
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

5. Example

Project: ContinuousTests
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

6. Example

Project: ContinuousTests
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

7. Example

Project: ContinuousTests
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

8. Example

Project: ContinuousTests
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

9. Example

Project: ContinuousTests
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

10. Example

Project: ContinuousTests
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

11. Example

Project: ContinuousTests
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

12. Example

Project: ContinuousTests
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

13. Example

Project: FileHelpers
Source File: FixedWidthDesigner.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);
            mCharWidth = -1;
        }

14. Example

Project: AutoTest.Net
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

15. Example

Project: AutoTest.Net
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

16. Example

Project: AutoTest.Net
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

17. Example

Project: AutoTest.Net
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

18. Example

Project: AutoTest.Net
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

19. Example

Project: AutoTest.Net
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

20. Example

Project: AutoTest.Net
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

21. Example

Project: AutoTest.Net
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

22. Example

Project: AutoTest.Net
Source File: ResultTabs.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            tabControl.ItemSize = new Size(tabControl.ItemSize.Width, this.Font.Height + 7);
        }

23. Example

Project: AutoTest.Net
Source File: CodeBox.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            if (_workingContext != null)
            {
                _workingContext.Font = Font;
                Text = Text;
            }

            return;
        }

24. Example

Project: AutoTest.Net
Source File: ErrorList.cs
protected override void OnFontChanged(EventArgs e)
        {
            this._renderer.Font = this.Font;

            base.OnFontChanged(e);
        }

25. Example

Project: AutoTest.Net
Source File: StackTraceDisplay.cs
protected override void OnFontChanged(EventArgs e)
        {
            _textContent.Font = this.Font;

            base.OnFontChanged(e);
        }

26. Example

Project: Cyotek.Windows.Forms.ColorPicker
Source File: ColorEditor.cs
protected override void OnFontChanged(EventArgs e)
    {
      base.OnFontChanged(e);

      this.SetDropDownWidth();
    }

27. Example

Project: fomm
Source File: HeaderPanel.cs
protected override void OnFontChanged(EventArgs e)
    {
      base.OnFontChanged(e);
      m_tlbLabel.Font = Font;
      updateLayout();
    }

28. Example

Project: gitter
Source File: LinkButton.cs
protected override void OnFontChanged(EventArgs e)
		{
			base.OnFontChanged(e);
			RefreshUnderlineFont();
		}

29. Example

Project: ipaddresscontrollib
Source File: IPAddressControl.cs
protected override void OnFontChanged( EventArgs e )
      {
         base.OnFontChanged( e );
         AdjustSize();
      }

30. Example

Project: ipaddresscontrollib
Source File: IPAddressControl.cs
protected override void OnFontChanged( EventArgs e )
      {
         base.OnFontChanged( e );
         AdjustSize();
      }

31. Example

Project: ipaddresscontrollib
Source File: IPAddressControl.cs
protected override void OnFontChanged( EventArgs e )
      {
         base.OnFontChanged( e );
         AdjustSize();
      }

32. Example

Project: ipaddresscontrollib
Source File: IPAddressControl.cs
protected override void OnFontChanged(EventArgs e)
    {
      base.OnFontChanged(e);
      AdjustSize();
    }

33. Example

Project: ipaddresscontrollib
Source File: IPAddressControl.cs
protected override void OnFontChanged(EventArgs e)
    {
      base.OnFontChanged(e);
      AdjustSize();
    }

34. Example

Project: Nexus-Mod-Manager
Source File: HeaderPanel.cs
protected override void OnFontChanged(EventArgs e)
		{
			base.OnFontChanged(e);
			m_tlbLabel.Font = this.Font;
			updateLayout();
		}

35. Example

Project: SystemEx
Source File: MessageFormContent.cs
protected override void OnFontChanged(EventArgs e)
        {
            base.OnFontChanged(e);

            ProcessChange();
        }

36. Example

Project: SirenOfShame
Source File: AutomaticUpdater.cs
protected override void OnFontChanged(EventArgs e)
        {
            RefreshTextRect();

            Height = Math.Max(16, Font.Height);

            base.OnFontChanged(e);
        }

37. Example

Project: automatic-updater
Source File: AutomaticUpdater.cs
protected override void OnFontChanged(EventArgs e)
        {
            RefreshTextRect();

            Height = Math.Max(16, Font.Height);

            base.OnFontChanged(e);
        }