System.Windows.Forms.XplatUIX11.GraphicsExposePredicate C# (CSharp) 메소드

GraphicsExposePredicate() 개인적인 메소드

private GraphicsExposePredicate ( IntPtr display, XEvent &xevent, IntPtr arg ) : bool
display IntPtr
xevent XEvent
arg IntPtr
리턴 bool
		bool GraphicsExposePredicate (IntPtr display, ref XEvent xevent, IntPtr arg)
		{
			return (xevent.type == XEventName.GraphicsExpose || xevent.type == XEventName.NoExpose) &&
				arg == xevent.GraphicsExposeEvent.drawable;
		}
XplatUIX11