2 implementations of IsGraphicsStateClean
System.Windows.Forms (2)
System\Windows\Forms\Rendering\DrawItemEventArgs.cs (1)
167bool IGraphicsHdcProvider.IsGraphicsStateClean => _event.IsStateClean;
System\Windows\Forms\Rendering\PaintEventArgs.cs (1)
140bool IGraphicsHdcProvider.IsGraphicsStateClean => _event.IsStateClean;
8 references to IsGraphicsStateClean
System.Private.Windows.GdiPlus (1)
Windows\Win32\Graphics\Gdi\DeviceContextHdcScope.cs (1)
120else if (provider is not null && provider.IsGraphicsStateClean)
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
398if (!((IGraphicsHdcProvider)pcea).IsGraphicsStateClean)
System.Windows.Forms.Primitives.Tests (6)
System\Windows\Forms\DeviceContextHdcScopeTests.cs (6)
220.Setup(p => p.IsGraphicsStateClean) 231mockHdcProvider.VerifyGet(p => p.IsGraphicsStateClean, Times.AtLeastOnce()); 255.Setup(p => p.IsGraphicsStateClean) 269mockHdcProvider.VerifyGet(p => p.IsGraphicsStateClean, Times.AtLeastOnce()); 292.Setup(p => p.IsGraphicsStateClean) 303mockHdcProvider.VerifyGet(p => p.IsGraphicsStateClean, Times.AtLeastOnce());