apiscomctl32.cs
来自「树形列表控件」· CS 代码 · 共 24 行
CS
24 行
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 + =
减小字号Ctrl + -
显示快捷键?