13 writes to SmoothingMode
System.Drawing.Common.Tests (12)
mono\System.Drawing\GraphicsTests.cs (7)
130g.SmoothingMode = SmoothingMode.AntiAlias; 294g.SmoothingMode = SmoothingMode.AntiAlias; 307g.SmoothingMode = SmoothingMode.None; 964g.SmoothingMode = SmoothingMode.AntiAlias; 997g.SmoothingMode = SmoothingMode.AntiAlias; 1031g.SmoothingMode = SmoothingMode.AntiAlias; 1112g.SmoothingMode = SmoothingMode.AntiAlias;
System\Drawing\GraphicsTests.cs (5)
909graphics.SmoothingMode = smoothingMode; 920AssertExtensions.Throws<InvalidEnumArgumentException>("value", () => graphics.SmoothingMode = smoothingMode); 928AssertExtensions.Throws<ArgumentException>(null, () => graphics.SmoothingMode = SmoothingMode.Invalid); 940Assert.Throws<InvalidOperationException>(() => graphics.SmoothingMode = SmoothingMode.AntiAlias); 956AssertExtensions.Throws<ArgumentException>(null, () => graphics.SmoothingMode = SmoothingMode.AntiAlias);
WinFormsControlsTest (1)
CustomComCtl32Button.cs (1)
118g.SmoothingMode = SmoothingMode.AntiAlias;
10 references to SmoothingMode
System.Drawing.Common.Tests (10)
mono\System.Drawing\GraphicsTests.cs (6)
114Assert.Equal(SmoothingMode.None, g.SmoothingMode); 141Assert.Equal(SmoothingMode.AntiAlias, g.SmoothingMode); 319Assert.Equal(SmoothingMode.AntiAlias, g.SmoothingMode); 333Assert.Equal(SmoothingMode.None, g.SmoothingMode); 914AssertEquals(message + ".SmoothingMode", SmoothingMode.None, g.SmoothingMode); 930AssertEquals(message + ".SmoothingMode", SmoothingMode.AntiAlias, g.SmoothingMode);
System\Drawing\GraphicsTests.cs (4)
910Assert.Equal(expectedSmoothingMode, graphics.SmoothingMode); 939Assert.Throws<InvalidOperationException>(() => graphics.SmoothingMode); 955AssertExtensions.Throws<ArgumentException>(null, () => graphics.SmoothingMode); 2815Assert.Equal(SmoothingMode.None, graphics.SmoothingMode);