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)
908graphics.SmoothingMode = smoothingMode; 919AssertExtensions.Throws<InvalidEnumArgumentException>("value", () => graphics.SmoothingMode = smoothingMode); 927AssertExtensions.Throws<ArgumentException>(null, () => graphics.SmoothingMode = SmoothingMode.Invalid); 939Assert.Throws<InvalidOperationException>(() => graphics.SmoothingMode = SmoothingMode.AntiAlias); 955AssertExtensions.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)
909Assert.Equal(expectedSmoothingMode, graphics.SmoothingMode); 938Assert.Throws<InvalidOperationException>(() => graphics.SmoothingMode); 954AssertExtensions.Throws<ArgumentException>(null, () => graphics.SmoothingMode); 2814Assert.Equal(SmoothingMode.None, graphics.SmoothingMode);