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

DefineStdCursor() private method

private DefineStdCursor ( StdCursor id ) : IntPtr
id StdCursor
return System.IntPtr
		internal override IntPtr DefineStdCursor(StdCursor id) {
			CursorFontShape	shape;
			IntPtr		cursor;

			shape = StdCursorToFontShape (id);

			lock (XlibLock) {
				cursor = XCreateFontCursor(DisplayHandle, shape);
			}
			return cursor;
		}
XplatUIX11