更新3.0版本

This commit is contained in:
蓝点lilac
2021-02-22 01:16:00 +08:00
parent e4b6e851c0
commit ab4a2d9424
8 changed files with 13 additions and 12 deletions

View File

@@ -1,9 +1,9 @@
using System;
using BluePointLilac.Methods;
using System;
using System.Globalization;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using BluePointLilac.Methods;
namespace ContextMenuManager
{

View File

@@ -60,7 +60,7 @@ namespace ContextMenuManager
///<summary>资源管理器图标</summary>
public static readonly Image Explorer = ResourceIcon.GetIcon("explorer.exe", 0).ToBitmap();
///<summary>命令提示符图标</summary>
public static readonly Image Cmd= ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
public static readonly Image Cmd = ResourceIcon.GetIcon("cmd.exe", 0).ToBitmap();
///<summary>重启Explorer图标</summary>
public static readonly Image RestartExplorer = ResourceIcon.GetIcon("shell32.dll", 238).ToBitmap();
///<summary>网络驱动器图标</summary>

View File

@@ -1,6 +1,6 @@
using System.Drawing;
using BluePointLilac.Methods;
using System.Drawing;
using System.Windows.Forms;
using BluePointLilac.Methods;
namespace BluePointLilac.Controls
{

View File

@@ -33,7 +33,7 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<Optimize>true</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>

View File

@@ -26,7 +26,7 @@ namespace ContextMenuManager.Controls
});
Array.ForEach(values.Distinct(StringComparer.OrdinalIgnoreCase).ToArray(), value =>
{
this.AddItem(new GuidBlockedItem(value));
this.AddItem(new GuidBlockedItem(value));
});
}

View File

@@ -117,7 +117,7 @@ namespace ContextMenuManager.Controls
if(IsShortcut)
{
location = Shortcut.IconLocation;
if(location==",0") location = Shortcut.TargetPath;
if(location == ",0") location = Shortcut.TargetPath;
}
else
{

View File

@@ -132,7 +132,8 @@ namespace ContextMenuManager.Controls
TsiChangeGroup.Click += (sender, e) => ChangeGroup();
BtnMoveDown.MouseDown += (sender, e) => MoveItem(false);
BtnMoveUp.MouseDown += (sender, e) => MoveItem(true);
TsiAdministrator.Click += (sender, e) => {
TsiAdministrator.Click += (sender, e) =>
{
WinXList.HashLnk(this.FilePath);
ExplorerRestarter.Show();
};

View File

@@ -1,4 +1,4 @@
[Update]
Version=2.2.0.0
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/2.2.0.0/ContextMenuManager.zip
Info=【更新描述】\n(1).支持定义所有格式文件的右键菜单;\n(2).优化规则“使用 Skype 共享”,可永久禁用;\n(3).支持更改程序内网页搜索引擎;\n(4).添加设置文件格式感知类型功能\n(5).扩充程序GUID字典更友好
Version=3.0.0.0
Url=https://github.com/BluePointLilac/ContextMenuManager/releases/download/3.0.0.0/ContextMenuManager.zip
Info=【更新描述】\n(1).支持通过GUID添加ShellEx菜单项目\n(2).添加ShellExecute函数方便创建更加强大的Shell菜单项目\n(3).添加WinX菜单创建和排序功能\n(4).添加IE右键菜单管理和创建功能\n(5).添加管理和创建右键拖拽菜单项目功能;\n(6).添加了丰富的字典,添加了很多增强菜单;\n(7).整合文件类型管理功能,使管理更加方便\n(8).添加状态栏实时显示文件路径功能;\n(9).优化程序部分UI优化部分代码解决一些已知Bug。