-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
11/9/2018 Update: 1. Fixed: Exit logic 2. Added: Taskbar size change event listener 3. Added: "Not supported" message when taskbar is vertical 4. Changed: Several keyboard shorcuts 5. Changed: More complete How To instructions 11/9/2018 更新: 1. 修复:程序退出逻辑 2. 新增:任务栏大小改变时的程序逻辑 3. 新增:“不支持竖任务栏”的提示消息 4. 改变:一些热键设置 4. 改变:更完整的使用说明
- Loading branch information
Showing
72 changed files
with
1,109 additions
and
753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
[Dd]ebug/ | ||
# [Rr]elease/ | ||
x64/ | ||
build/ | ||
# build/ | ||
# [Bb]in/ | ||
[Oo]bj/ | ||
|
||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Weavers> | ||
<Costura/> | ||
|
||
<Costura> | ||
<IncludeAssemblies> | ||
DevComponents.DotNetBar2 | ||
</IncludeAssemblies> | ||
</Costura> | ||
</Weavers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
GenereateUpdateXML/bin/Release/GenereateUpdateXML.vshost.exe.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
</startup> | ||
</configuration> |
11 changes: 11 additions & 0 deletions
11
GenereateUpdateXML/bin/Release/GenereateUpdateXML.vshost.exe.manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> | ||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> | ||
<security> | ||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> | ||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/> | ||
</requestedPrivileges> | ||
</security> | ||
</trustInfo> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Costura.Fody" version="1.3.5.0" targetFramework="net452" developmentDependency="true" /> | ||
<package id="Fody" version="1.29.3" targetFramework="net452" developmentDependency="true" /> | ||
<package id="Costura.Fody" version="3.1.6" targetFramework="net45" developmentDependency="true" /> | ||
<package id="Fody" version="3.2.16" targetFramework="net45" developmentDependency="true" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,20 +19,20 @@ public About(Tools tools) | |
this.ForeColor = tools.ForeColor; | ||
this.BackColor = tools.BackColor; | ||
|
||
about_version_label.Text = tools.getString("about_version_label"); | ||
about_author_label.Text = tools.getString("about_author_label"); | ||
about_email_label.Text = tools.getString("about_email_label"); | ||
about_intro_label.Text = tools.getString("about_intro_label"); | ||
about_version_label.Text = tools.GetString("about_version_label"); | ||
about_author_label.Text = tools.GetString("about_author_label"); | ||
about_email_label.Text = tools.GetString("about_email_label"); | ||
about_intro_label.Text = tools.GetString("about_intro_label"); | ||
|
||
about_name.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name; | ||
about_version.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); | ||
about_author.Text = "Henry Xu"; | ||
about_email.Text = "[email protected]"; | ||
about_intro.Text = string.Join(Environment.NewLine, tools.getString("about_intro").Split(new string[] { "<br/>" }, StringSplitOptions.None)); | ||
about_intro.Text = string.Join(Environment.NewLine, tools.GetString("about_intro").Split(new string[] { "<br/>" }, StringSplitOptions.None)); | ||
|
||
about_ok_button.Text = tools.getString("button_ok"); | ||
about_ok_button.Text = tools.GetString("button_ok"); | ||
|
||
about_pictureBox.Image = tools.img; | ||
about_pictureBox.Image = tools.Img; | ||
about_pictureBox.SizeMode = PictureBoxSizeMode.Zoom; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.