申明:
[DllImport("shell32.dll")]
public extern static int ShellAbout(IntPtr hWnd, string szApp, string szOtherStuff, IntPtr hIcon);
调用:
ShellAbout(this.Handle, "身份证图像采集", "Version 1.0.0.2", this.Icon.Handle);
本文介绍了一个使用 C# 调用 DLL 实现的身份证图像采集对话框功能。通过调用 shell32.dll 中的 ShellAbout 方法,可以显示一个带有应用程序名称、版本和其他相关信息的对话框。
申明:
[DllImport("shell32.dll")]
public extern static int ShellAbout(IntPtr hWnd, string szApp, string szOtherStuff, IntPtr hIcon);
调用:
ShellAbout(this.Handle, "身份证图像采集", "Version 1.0.0.2", this.Icon.Handle);

被折叠的 条评论
为什么被折叠?