131 references to SizeF
BinaryFormatTests (4)
DesignSurface (1)
NativeHost.ManagedControl (1)
PresentationUI (11)
System.ComponentModel.TypeConverter (2)
System.Drawing.Common (8)
System\Drawing\Graphics.cs (7)
1823return new SizeF(boundingBox.Width, boundingBox.Height);
1885public SizeF MeasureString(string? text, Font font) => MeasureString(text, font, new SizeF(0, 0));
1889public SizeF MeasureString(ReadOnlySpan<char> text, Font font) => MeasureString(text, font, new SizeF(0, 0));
1894public SizeF MeasureString(string? text, Font font, int width) => MeasureString(text, font, new SizeF(width, 999999));
1899MeasureString(text, font, new SizeF(width, 999999));
1907MeasureString(text, font, new SizeF(width, 999999), format);
1912MeasureString(text, font, new SizeF(width, 999999), format);
System.Drawing.Common.Tests (9)
mono\System.Drawing\GraphicsTests.cs (2)
1785? g.MeasureString(s.AsSpan(), _font, new SizeF(80, size.Height), null, out int chars, out int lines)
1786: g.MeasureString(s, _font, new SizeF(80, size.Height), null, out chars, out lines);
System\Drawing\GraphicsTests.cs (2)
2983graphics.DrawRoundedRectangle(Pens.Red, new RectangleF(0, 0, 10, 10), new(2, 2));
3001graphics.FillRoundedRectangle(Brushes.Green, new RectangleF(0, 0, 10, 10), new(2, 2));
System.Drawing.Primitives (8)
System.Private.Windows.Core (1)
System.Private.Windows.Core.Tests (2)
System.Windows.Forms (14)
System.Windows.Forms.Design (4)
System.Windows.Forms.Tests (13)
TestPassApp (13)
TrimTest (1)
TrimTestBinaryDeserialization (1)
WindowsFormsIntegration (1)
WinFormsControlsTest (37)