作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
这篇文章:How do I display a file's Properties dialog from C#?描述了如何显示文件的属性对话框,我想知道是否可以使用相同的方法但将打开的选项卡设置为安全?来自 C# 代码。
见下图。
提前致谢。
最佳答案
添加 info.lpParameters = "Security";
以显示安全选项卡。
或 info.lpParameters = "Details";
显示详细信息选项卡。
现在 ShowFileProperties 方法是:
public static bool ShowFileProperties(string Filename)
{
SHELLEXECUTEINFO info = new SHELLEXECUTEINFO();
info.cbSize = System.Runtime.InteropServices.Marshal.SizeOf(info);
info.lpVerb = "properties";
info.lpFile = Filename;
info.lpParameters = "Security";
info.nShow = SW_SHOW;
info.fMask = SEE_MASK_INVOKEIDLIST;
return ShellExecuteEx(ref info);
}
引用:To show the properties page of a file and navigate to a tab
关于c# - 如何从 C# 显示文件属性对话框安全选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30603139/
我是一名优秀的程序员,十分优秀!