windows.cs

来自「功能:基于windows mobile 的地图查看器。使用vs2005开发」· CS 代码 · 共 29 行

CS
29
字号
using System;
using System.Runtime.InteropServices;

namespace Windows
{
	/// <summary>
	/// Encapsulation of all coredll functions used by GXEngine.
	/// </summary>
	public class Handle
	{
		/// <summary>
		/// This function retrieves the handle to the window, if any, that
		/// has captured the mouse or stylus input. Only one window at a
		/// time can capture the mouse or stylus input.
		/// </summary>
		/// <returns>The handle of the capture window associated with the
		/// current thread indicates success. NULL indicates that no window
		/// in the current thread has captured the mouse.</returns>
#if !DESKTOP
		[DllImport("coredll.dll")]
		extern public static IntPtr GetCapture();
#endif
	}

	public class Memory
	{
		/// <summary>
		/// This function allocates the specified number of bytes from the
		/// heap. In the linear Microsoft

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?