22 references to SmoothingMode
System.Drawing (1)
System.Drawing.cs (1)
53[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Drawing2D.SmoothingMode))]
System.Drawing.Common (6)
System\Drawing\Graphics.cs (5)
373public Drawing2D.SmoothingMode SmoothingMode 379return (Drawing2D.SmoothingMode)mode; 383if (value is < Drawing2D.SmoothingMode.Invalid or > Drawing2D.SmoothingMode.AntiAlias) 384throw new InvalidEnumArgumentException(nameof(value), (int)value, typeof(Drawing2D.SmoothingMode));
System\Drawing\Printing\PreviewPrintController.cs (1)
96_graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias;
System.Windows.Forms (15)
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ButtonDarkModeAdapter.cs (6)
79var smoothingMode = g.SmoothingMode; 80g.SmoothingMode = Drawing.Drawing2D.SmoothingMode.AntiAlias; 119var smoothingMode = g.SmoothingMode; 120g.SmoothingMode = Drawing.Drawing2D.SmoothingMode.AntiAlias; 157var smoothingMode = g.SmoothingMode; 158g.SmoothingMode = Drawing.Drawing2D.SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\FlatButtonDarkModeRenderer.cs (2)
82g.SmoothingMode = SmoothingMode.AntiAlias; 99g.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\PopupButtonDarkModeRenderer.cs (2)
126SmoothingMode originalMode = graphics.SmoothingMode; 130graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\SystemButtonDarkModeRenderer.cs (1)
173graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (2)
1069SmoothingMode oldSmoothing = g.SmoothingMode; 1070g.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\ControlPaint_ModernControlButtonRenderer.cs (2)
82SmoothingMode oldMode = graphics.SmoothingMode; 83graphics.SmoothingMode = SmoothingMode.AntiAlias;