⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apiscomctl32.cs

📁 树形列表控件
💻 CS
字号:
using System;
using System.Runtime.InteropServices;

namespace System.Runtime.InteropServices.APIs
{
	public class APIsComctl32
	{
		#region GetMajorVersion
		public static int GetMajorVersion()
		{
			APIsStructs.DLLVERSIONINFO2 pdvi = new APIsStructs.DLLVERSIONINFO2();
			pdvi.info1.cbSize = Marshal.SizeOf(typeof(APIsStructs.DLLVERSIONINFO2));
			DllGetVersion(ref pdvi);
			return pdvi.info1.dwMajorVersion;
		}
		#endregion
		#region DllGetVersion
		[DllImport("Comctl32.dll", CharSet=CharSet.Auto)]
		static private extern int DllGetVersion(
			ref APIsStructs.DLLVERSIONINFO2 pdvi);
		#endregion
	}
}

⌨️ 快捷键说明

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