32 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 (25)
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ButtonDarkModeAdapter.cs (2)
129Drawing.Drawing2D.SmoothingMode smoothingMode = graphics.SmoothingMode; 133graphics.SmoothingMode = Drawing.Drawing2D.SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\FlatButtonDarkModeRenderer.cs (2)
87g.SmoothingMode = SmoothingMode.AntiAlias; 110g.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ModernButtonDarkModeRenderer.cs (2)
93graphics.SmoothingMode = SmoothingMode.AntiAlias; 138graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ModernFlatButtonRenderer.cs (1)
47graphics.SmoothingMode = SmoothingMode.Default;
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\SystemButtonDarkModeRenderer.cs (3)
46graphics.SmoothingMode = SmoothingMode.AntiAlias; 73graphics.SmoothingMode = SmoothingMode.AntiAlias; 200graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\ComboBox\ComboBox.ModernComboAdapter.cs (1)
78graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\GroupBox\GroupBox.Modern.cs (1)
185e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
2709offscreenGraphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (2)
1092SmoothingMode oldSmoothing = g.SmoothingMode; 1093g.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
1101graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\ParentBackgroundRenderer.cs (1)
79graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\Animation\AnimatedFocusIndicatorRenderer.cs (1)
112graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\Button\PopupButtonKeyCapRenderer.cs (1)
94graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\CheckBox\AnimatedCheckGlyphRenderer.cs (1)
134graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\CheckBox\AnimatedToggleSwitchRenderer.cs (2)
236SmoothingMode previousSmoothingMode = graphics.SmoothingMode; 239graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\ControlPaint_ModernControlButtonRenderer.cs (2)
82SmoothingMode oldMode = graphics.SmoothingMode; 83graphics.SmoothingMode = SmoothingMode.AntiAlias;
System\Windows\Forms\Rendering\RadioButton\AnimatedRadioGlyphRenderer.cs (1)
143graphics.SmoothingMode = SmoothingMode.AntiAlias;