System.Windows.Forms.XplatUIX11.XCreateSimpleWindow C# (CSharp) Method

XCreateSimpleWindow() static private method

static private XCreateSimpleWindow ( IntPtr display, IntPtr parent, int x, int y, int width, int height, int border_width, UIntPtr border, UIntPtr background ) : IntPtr
display IntPtr
parent IntPtr
x int
y int
width int
height int
border_width int
border UIntPtr
background UIntPtr
return IntPtr
		internal static IntPtr XCreateSimpleWindow(IntPtr display, IntPtr parent, int x, int y, int width, int height, int border_width, UIntPtr border, UIntPtr background) {
			DebugHelper.TraceWriteLine ("XCreateSimpleWindow");
			return _XCreateSimpleWindow(display, parent, x, y, width, height, border_width, border, background);
		}
		[DllImport ("libX11", EntryPoint="XMapWindow")]
XplatUIX11