### 2021-03-04更新
------ #### VSoft V1.0.2103.0401 - *.[新增]新增测试模式,测试模式下支持编辑内置命令。 - *.[修复]修复内置命令删除栏目时,内置命令没有同步删除的BUG。 #### VSoftBox V1.0.2103.0401 - *.[删除]删除配置类,全部集合在VSoft.dll中。
|
Before Width: | Height: | Size: 9.8 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/京东.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/优酷.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/我的电脑.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/爱奇艺.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/网上邻居.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/腾讯视频.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
Bin/Debug/VSoft/SysDb/Icons/苏宁易购.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
|
|
@ -1,4 +1,8 @@
|
||||||
[VSoft]
|
[VSoft]
|
||||||
hwnd=399788
|
hwnd=659936
|
||||||
|
width=699
|
||||||
|
height=508
|
||||||
|
[VSoft_Test]
|
||||||
|
hwnd=399336
|
||||||
width=733
|
width=733
|
||||||
height=570
|
height=570
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
<root>
|
<root>
|
||||||
<list id="LastUpdateTime" Value="2021/2/28 16:44:50" />
|
<list id="LastUpdateTime" Value="2021/3/4 21:23:03" />
|
||||||
</root>
|
</root>
|
||||||
11
CHANGELOG.md
|
|
@ -1,4 +1,13 @@
|
||||||
### 2021-02-28更新
|
### 2021-03-04更新
|
||||||
|
------
|
||||||
|
#### VSoft V1.0.2103.0401
|
||||||
|
- *.[新增]新增测试模式,测试模式下支持编辑内置命令。
|
||||||
|
- *.[修复]修复内置命令删除栏目时,内置命令没有同步删除的BUG。
|
||||||
|
|
||||||
|
#### VSoftBox V1.0.2103.0401
|
||||||
|
- *.[删除]删除配置类,全部集合在VSoft.dll中。
|
||||||
|
|
||||||
|
### 2021-02-28更新
|
||||||
------
|
------
|
||||||
#### VSoft V1.0.2102.2801
|
#### VSoft V1.0.2102.2801
|
||||||
- *.[新增]项目支持毕方3.0标准。
|
- *.[新增]项目支持毕方3.0标准。
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,11 @@ namespace Itrycn_Project
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件ID
|
/// 软件ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Id = "VSoft_Test";
|
||||||
|
#else
|
||||||
public const string Soft_Id = "VSoft";
|
public const string Soft_Id = "VSoft";
|
||||||
|
#endif
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 开机启动的参数
|
/// 开机启动的参数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
using Itrycn_Project;
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
using VSoft.Config;
|
||||||
|
|
||||||
namespace VSoftBox
|
namespace VSoftBox
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.2102.2701")]
|
[assembly: AssemblyVersion("1.0.2103.0401")]
|
||||||
[assembly: AssemblyFileVersion("1.0.2102.2701")]
|
[assembly: AssemblyFileVersion("1.0.2103.0401")]
|
||||||
|
|
@ -55,8 +55,6 @@
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Config\Soft_Config.cs" />
|
|
||||||
<Compile Include="Config\Soft_Info.cs" />
|
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<EmbeddedResource Include="Properties\Resources.resx">
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
|
|
||||||
|
|
@ -21,11 +21,20 @@ namespace VSoft.Config
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件标题
|
/// 软件标题
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Title = "VSoft 快速启动【测试模式】";
|
||||||
|
#else
|
||||||
public const string Soft_Title = "VSoft 快速启动";
|
public const string Soft_Title = "VSoft 快速启动";
|
||||||
|
#endif
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 软件ID
|
/// 软件ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
#if TEST
|
||||||
|
public const string Soft_Id = "VSoft_Test";
|
||||||
|
#else
|
||||||
public const string Soft_Id = "VSoft";
|
public const string Soft_Id = "VSoft";
|
||||||
|
#endif
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 开机启动的参数
|
/// 开机启动的参数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,11 @@ namespace VSoft
|
||||||
public partial class FrmInCMD : Skins.SKinForm
|
public partial class FrmInCMD : Skins.SKinForm
|
||||||
{
|
{
|
||||||
public string SQLConnStr = Itrycn_Db.SQLConnStr_SysDb;
|
public string SQLConnStr = Itrycn_Db.SQLConnStr_SysDb;
|
||||||
|
#if TEST
|
||||||
|
private bool ReadOnly { get; set; } = false;
|
||||||
|
#else
|
||||||
private bool ReadOnly { get; set; } = true;
|
private bool ReadOnly { get; set; } = true;
|
||||||
|
#endif
|
||||||
public FrmInCMD()
|
public FrmInCMD()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
@ -130,7 +134,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
if(ds.Tables[0].Rows.Count==0)
|
if(ds.Tables[0].Rows.Count==0)
|
||||||
{
|
{
|
||||||
#region 如果没有栏目,则创建一个栏目
|
#region 如果没有栏目,则创建一个栏目
|
||||||
RyQuickSQL mySQL = new RyQuickSQL("Columns");
|
RyQuickSQL mySQL = new RyQuickSQL("Columns");
|
||||||
mySQL.AddField("Name", "默认栏目");
|
mySQL.AddField("Name", "默认栏目");
|
||||||
mySQL.AddField("editTime", DateTime.Now);
|
mySQL.AddField("editTime", DateTime.Now);
|
||||||
|
|
@ -151,7 +155,7 @@ namespace VSoft
|
||||||
TabList_Column.Items.Add(row["Name"].ToString()).Tag = info;
|
TabList_Column.Items.Add(row["Name"].ToString()).Tag = info;
|
||||||
}
|
}
|
||||||
ds2.Dispose();
|
ds2.Dispose();
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
ds.Dispose();
|
ds.Dispose();
|
||||||
TabList_Column.EndUpdate();
|
TabList_Column.EndUpdate();
|
||||||
|
|
@ -204,7 +208,7 @@ namespace VSoft
|
||||||
{
|
{
|
||||||
LoadDb(true);
|
LoadDb(true);
|
||||||
}
|
}
|
||||||
#region 对栏目标签进行操作
|
#region 对栏目标签进行操作
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 将栏目列表中的第几个栏目修改
|
/// 将栏目列表中的第几个栏目修改
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -212,7 +216,7 @@ namespace VSoft
|
||||||
/// <param name="index"></param>
|
/// <param name="index"></param>
|
||||||
private void SetColumnRow(int id, int index)
|
private void SetColumnRow(int id, int index)
|
||||||
{
|
{
|
||||||
#region 重新载入数据
|
#region 重新载入数据
|
||||||
DataProvider mydb = new DataProvider();
|
DataProvider mydb = new DataProvider();
|
||||||
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
||||||
if (db.ConnDb(SQLConnStr) == 1)
|
if (db.ConnDb(SQLConnStr) == 1)
|
||||||
|
|
@ -238,7 +242,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
private void BtnAddColumn_Click(object sender, EventArgs e)
|
private void BtnAddColumn_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -315,6 +319,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
ds.Dispose();
|
ds.Dispose();
|
||||||
db.DelById("Columns", column_id.ToString());
|
db.DelById("Columns", column_id.ToString());
|
||||||
|
db.ExecuteNonQuery("delete from Softs where ColumnId=" + column_id);
|
||||||
TabList_Column.SelectedItems[0].Remove();
|
TabList_Column.SelectedItems[0].Remove();
|
||||||
db.BeginTransaction();
|
db.BeginTransaction();
|
||||||
for (int i = 1; i < TabList_Column.Items.Count; i++)
|
for (int i = 1; i < TabList_Column.Items.Count; i++)
|
||||||
|
|
@ -328,8 +333,8 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region 对分类标签进行操作
|
#region 对分类标签进行操作
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///将分类列表中的第几个分类进行修改
|
///将分类列表中的第几个分类进行修改
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -337,7 +342,7 @@ namespace VSoft
|
||||||
/// <param name="index"></param>
|
/// <param name="index"></param>
|
||||||
private void SetTypeRow(int id, int index)
|
private void SetTypeRow(int id, int index)
|
||||||
{
|
{
|
||||||
#region 重新载入数据
|
#region 重新载入数据
|
||||||
DataProvider mydb = new DataProvider();
|
DataProvider mydb = new DataProvider();
|
||||||
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
||||||
if (db.ConnDb(SQLConnStr) == 1)
|
if (db.ConnDb(SQLConnStr) == 1)
|
||||||
|
|
@ -354,7 +359,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
private void 新增分类ToolStripMenuItem_Click(object sender, EventArgs e)
|
private void 新增分类ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -470,11 +475,11 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region 对软件列表进行操作
|
#region 对软件列表进行操作
|
||||||
private void SetSoftRow(int id, int index)
|
private void SetSoftRow(int id, int index)
|
||||||
{
|
{
|
||||||
#region 重新载入数据
|
#region 重新载入数据
|
||||||
DataProvider mydb = new DataProvider();
|
DataProvider mydb = new DataProvider();
|
||||||
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
IDbInterface db = Itrycn_Db.CreateDataProvider(Itrycn_Db.dataType);
|
||||||
if (db.ConnDb(SQLConnStr) == 1)
|
if (db.ConnDb(SQLConnStr) == 1)
|
||||||
|
|
@ -506,7 +511,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
private void 新增软件ToolStripMenuItem_Click(object sender, EventArgs e)
|
private void 新增软件ToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -662,8 +667,8 @@ namespace VSoft
|
||||||
DialogResult = DialogResult.OK;
|
DialogResult = DialogResult.OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region 软件列表拖放
|
#region 软件列表拖放
|
||||||
private void IconViewEx1_ItemDrag(object sender, ItemDragEventArgs e)
|
private void IconViewEx1_ItemDrag(object sender, ItemDragEventArgs e)
|
||||||
{
|
{
|
||||||
if (ReadOnly){return;}
|
if (ReadOnly){return;}
|
||||||
|
|
@ -695,7 +700,7 @@ namespace VSoft
|
||||||
var filedrop = e.Data.GetData(DataFormats.FileDrop);
|
var filedrop = e.Data.GetData(DataFormats.FileDrop);
|
||||||
if (filedrop != null)
|
if (filedrop != null)
|
||||||
{
|
{
|
||||||
#region 拖放文件到软件列表
|
#region 拖放文件到软件列表
|
||||||
var ColumnId = GetCurColumnId();
|
var ColumnId = GetCurColumnId();
|
||||||
if(ColumnId==0)
|
if(ColumnId==0)
|
||||||
{
|
{
|
||||||
|
|
@ -711,7 +716,7 @@ namespace VSoft
|
||||||
}
|
}
|
||||||
frm.Dispose();
|
frm.Dispose();
|
||||||
return;
|
return;
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
Point pt;
|
Point pt;
|
||||||
pt = ((IconViewEx)(sender)).PointToClient(new Point(e.X, e.Y));
|
pt = ((IconViewEx)(sender)).PointToClient(new Point(e.X, e.Y));
|
||||||
|
|
@ -786,8 +791,8 @@ namespace VSoft
|
||||||
LblDrag.Location = item.Position;
|
LblDrag.Location = item.Position;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region 栏目拖放
|
#region 栏目拖放
|
||||||
private void TabList_Column_DragEnter(object sender, DragEventArgs e)
|
private void TabList_Column_DragEnter(object sender, DragEventArgs e)
|
||||||
{
|
{
|
||||||
if (ReadOnly)
|
if (ReadOnly)
|
||||||
|
|
@ -818,7 +823,7 @@ namespace VSoft
|
||||||
ListViewItem lvi = (ListViewItem)drag_item;
|
ListViewItem lvi = (ListViewItem)drag_item;
|
||||||
if (lvi.ListView == IconViewEx1)
|
if (lvi.ListView == IconViewEx1)
|
||||||
{
|
{
|
||||||
#region 从软件列表里拖放
|
#region 从软件列表里拖放
|
||||||
var info = (SoftInfo)lvi.Tag;
|
var info = (SoftInfo)lvi.Tag;
|
||||||
RyQuickSQL mySQL = new RyQuickSQL("Softs");
|
RyQuickSQL mySQL = new RyQuickSQL("Softs");
|
||||||
mySQL.AddField("ColumnId", columnid);
|
mySQL.AddField("ColumnId", columnid);
|
||||||
|
|
@ -847,7 +852,7 @@ namespace VSoft
|
||||||
ReSortSoftByList(db);
|
ReSortSoftByList(db);
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
else if (lvi.ListView == TabList_Column)
|
else if (lvi.ListView == TabList_Column)
|
||||||
{
|
{
|
||||||
|
|
@ -879,8 +884,8 @@ namespace VSoft
|
||||||
if (ReadOnly) { return; }
|
if (ReadOnly) { return; }
|
||||||
this.DoDragDrop(e.Item, DragDropEffects.Move);
|
this.DoDragDrop(e.Item, DragDropEffects.Move);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region 分类拖放
|
#region 分类拖放
|
||||||
private void TabList_Type_DragEnter(object sender, DragEventArgs e)
|
private void TabList_Type_DragEnter(object sender, DragEventArgs e)
|
||||||
{
|
{
|
||||||
if (ReadOnly)
|
if (ReadOnly)
|
||||||
|
|
@ -919,7 +924,7 @@ namespace VSoft
|
||||||
ListViewItem lvi = (ListViewItem)drag_item;
|
ListViewItem lvi = (ListViewItem)drag_item;
|
||||||
if (lvi.ListView == IconViewEx1)
|
if (lvi.ListView == IconViewEx1)
|
||||||
{
|
{
|
||||||
#region 来源自软件列表
|
#region 来源自软件列表
|
||||||
var info = (SoftInfo)lvi.Tag;
|
var info = (SoftInfo)lvi.Tag;
|
||||||
RyQuickSQL mySQL = new RyQuickSQL("Softs");
|
RyQuickSQL mySQL = new RyQuickSQL("Softs");
|
||||||
mySQL.AddField("ColumnId", columnid);
|
mySQL.AddField("ColumnId", columnid);
|
||||||
|
|
@ -940,7 +945,7 @@ namespace VSoft
|
||||||
ReSortSoftByList(db);
|
ReSortSoftByList(db);
|
||||||
}
|
}
|
||||||
db.Free();
|
db.Free();
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
else if (lvi.ListView == TabList_Type)
|
else if (lvi.ListView == TabList_Type)
|
||||||
{
|
{
|
||||||
|
|
@ -972,7 +977,7 @@ namespace VSoft
|
||||||
if (ReadOnly) { return; }
|
if (ReadOnly) { return; }
|
||||||
this.DoDragDrop(e.Item, DragDropEffects.Move);
|
this.DoDragDrop(e.Item, DragDropEffects.Move);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
private void FrmVSoft_Shown(object sender, EventArgs e)
|
private void FrmVSoft_Shown(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
18
Source/VSoft_Dll/FrmVSoft.Designer.cs
generated
|
|
@ -71,6 +71,7 @@
|
||||||
this.IconViewEx1 = new ryControls.IconViewEx();
|
this.IconViewEx1 = new ryControls.IconViewEx();
|
||||||
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||||
this.TabList_Column = new ryControls.TabList();
|
this.TabList_Column = new ryControls.TabList();
|
||||||
|
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
|
||||||
this.MenuList.SuspendLayout();
|
this.MenuList.SuspendLayout();
|
||||||
this.MenuTabColumn.SuspendLayout();
|
this.MenuTabColumn.SuspendLayout();
|
||||||
this.MenuTabType.SuspendLayout();
|
this.MenuTabType.SuspendLayout();
|
||||||
|
|
@ -243,9 +244,10 @@
|
||||||
this.打开官网ToolStripMenuItem,
|
this.打开官网ToolStripMenuItem,
|
||||||
this.捐助ToolStripMenuItem,
|
this.捐助ToolStripMenuItem,
|
||||||
this.设置ToolStripMenuItem,
|
this.设置ToolStripMenuItem,
|
||||||
|
this.toolStripMenuItem3,
|
||||||
this.退出软件ToolStripMenuItem});
|
this.退出软件ToolStripMenuItem});
|
||||||
this.MenuTray.Name = "MenuTray";
|
this.MenuTray.Name = "MenuTray";
|
||||||
this.MenuTray.Size = new System.Drawing.Size(137, 114);
|
this.MenuTray.Size = new System.Drawing.Size(137, 120);
|
||||||
//
|
//
|
||||||
// 显示主窗体ToolStripMenuItem
|
// 显示主窗体ToolStripMenuItem
|
||||||
//
|
//
|
||||||
|
|
@ -355,11 +357,10 @@
|
||||||
this.rySearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(244)))));
|
this.rySearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(244)))));
|
||||||
this.rySearch1.BaseColor = System.Drawing.Color.Teal;
|
this.rySearch1.BaseColor = System.Drawing.Color.Teal;
|
||||||
this.rySearch1.ButtonRoundBackColor = System.Drawing.SystemColors.Control;
|
this.rySearch1.ButtonRoundBackColor = System.Drawing.SystemColors.Control;
|
||||||
this.rySearch1.ColorGradient = true;
|
this.rySearch1.EmptyText = "输入名称或拼音搜索";
|
||||||
this.rySearch1.EmptyText = "输入名称或拼音即可搜索";
|
this.rySearch1.Location = new System.Drawing.Point(537, 36);
|
||||||
this.rySearch1.Location = new System.Drawing.Point(509, 36);
|
|
||||||
this.rySearch1.Name = "rySearch1";
|
this.rySearch1.Name = "rySearch1";
|
||||||
this.rySearch1.Size = new System.Drawing.Size(170, 27);
|
this.rySearch1.Size = new System.Drawing.Size(142, 27);
|
||||||
this.rySearch1.TabIndex = 2;
|
this.rySearch1.TabIndex = 2;
|
||||||
this.rySearch1.UseDefSkin = false;
|
this.rySearch1.UseDefSkin = false;
|
||||||
this.rySearch1.OnSearch += new System.EventHandler(this.rySearch1_OnSearch);
|
this.rySearch1.OnSearch += new System.EventHandler(this.rySearch1_OnSearch);
|
||||||
|
|
@ -470,6 +471,11 @@
|
||||||
this.TabList_Column.DragOver += new System.Windows.Forms.DragEventHandler(this.IconViewEx1_DragOver);
|
this.TabList_Column.DragOver += new System.Windows.Forms.DragEventHandler(this.IconViewEx1_DragOver);
|
||||||
this.TabList_Column.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TabList_Column_KeyDown);
|
this.TabList_Column.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TabList_Column_KeyDown);
|
||||||
//
|
//
|
||||||
|
// toolStripMenuItem3
|
||||||
|
//
|
||||||
|
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
|
||||||
|
this.toolStripMenuItem3.Size = new System.Drawing.Size(133, 6);
|
||||||
|
//
|
||||||
// FrmVSoft
|
// FrmVSoft
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||||
|
|
@ -488,6 +494,7 @@
|
||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
this.MinimumSize = new System.Drawing.Size(160, 60);
|
this.MinimumSize = new System.Drawing.Size(160, 60);
|
||||||
this.Name = "FrmVSoft";
|
this.Name = "FrmVSoft";
|
||||||
|
this.Opacity = 0.97D;
|
||||||
this.SideResizeWidth = 4;
|
this.SideResizeWidth = 4;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
this.Text = "VSoft";
|
this.Text = "VSoft";
|
||||||
|
|
@ -671,5 +678,6 @@
|
||||||
private System.Windows.Forms.Label LblEmpty;
|
private System.Windows.Forms.Label LblEmpty;
|
||||||
private System.Windows.Forms.Label LblSetting;
|
private System.Windows.Forms.Label LblSetting;
|
||||||
private System.Windows.Forms.Panel PnlLeft;
|
private System.Windows.Forms.Panel PnlLeft;
|
||||||
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.2102.2801")]
|
[assembly: AssemblyVersion("1.0.2103.0401")]
|
||||||
[assembly: AssemblyFileVersion("1.0.2102.2801")]
|
[assembly: AssemblyFileVersion("1.0.2103.0401")]
|
||||||
|
|
@ -24,7 +24,7 @@ namespace VSoft.Skins
|
||||||
{
|
{
|
||||||
if (!this.DesignMode)
|
if (!this.DesignMode)
|
||||||
{ base.XTheme = new VSoft.Skins.ThemeForm(); }
|
{ base.XTheme = new VSoft.Skins.ThemeForm(); }
|
||||||
Opacity = 0.9;
|
Opacity = 0.97;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>..\..\Bin\Debug\VSoft\</OutputPath>
|
<OutputPath>..\..\Bin\Debug\VSoft\</OutputPath>
|
||||||
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
<DefineConstants>TRACE;DEBUG;TEST</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<PlatformTarget>x86</PlatformTarget>
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
|
|
||||||