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