gpt4 book ai didi

c# - 如何从 C# 显示文件属性对话框安全选项卡

转载 作者:可可西里 更新时间:2023-11-01 14:13:36 25 4
gpt4 key购买 nike

这篇文章:How do I display a file's Properties dialog from C#?描述了如何显示文件的属性对话框,我想知道是否可以使用相同的方法但将打开的选项卡设置为安全?来自 C# 代码。

见下图。

Folder Properties Security Tab

提前致谢。

最佳答案

添加 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com