13 references to GraphicsState
System.Drawing (1)
System.Drawing.cs (1)
35[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Drawing2D.GraphicsState))]
System.Drawing.Common (2)
Special\NotSupported.cs (2)
659public void Restore(System.Drawing.Drawing2D.GraphicsState gstate) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 662public System.Drawing.Drawing2D.GraphicsState Save() { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Drawing.Common.Tests (7)
mono\System.Drawing\GraphicsTests.cs (3)
284GraphicsState state_default, state_modified; 1100GraphicsState gs1 = g.Save(); 1120GraphicsState gs2 = g.Save();
System\Drawing\Graphics_GetContextTests.Core.cs (2)
104GraphicsState state = graphics.Save(); 124GraphicsState state = graphics.Save();
System\Drawing\Graphics_GetContextTests.cs (2)
106GraphicsState state = graphics.Save(); 127GraphicsState state = graphics.Save();
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3639GraphicsState graphicsState = g.Save();
System\Windows\Forms\Rendering\PaintEventArgs.cs (1)
35private GraphicsState? _savedGraphicsState;
System.Windows.Forms.Primitives (1)
System\Windows\Forms\GraphicsStateScope.cs (1)
14private readonly GraphicsState _state;