6 references to WithSize
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (2)
1943{ oldDpi, font.WithSize(font.Size) } 1952scaledFont = font.WithSize(font.Size * factor);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3755item.Font = local.WithSize(local.Size * factor);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownItem.cs (1)
791childItem.Font = currentFont.WithSize(currentFont.Size * factor);
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Internals\ScaleHelper.cs (1)
243return textScale == 100 ? null : font.WithSize(font.Size * (textScale / 100.0f));
System.Windows.Forms.Tests (1)
System\Windows\Forms\ApplicationTests.cs (1)
283using Font fakeSysFont = sysFont.WithSize(sysFont.Size * 1.25f);