• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Controlling VMware Player in Tasktray.


Commit MetaInfo

Revisione2efe22b1a881c37fff20ecee26881b9c5630474 (tree)
Time2015-10-09 15:10:45
AuthorJeffyTS <JeffyTS@outl...>
CommiterJeffyTS

Log Message

Fixed dialogs bug.

Change Summary

Incremental Difference

--- a/VMwPlayerTaskTray/MainForm.cs
+++ b/VMwPlayerTaskTray/MainForm.cs
@@ -196,25 +196,31 @@ namespace VMwPlayerTaskTray
196196 private void ToolStripMenuItem_Reset_Click(object sender, EventArgs e)
197197 {
198198 // open dialog
199+ notifyIcon_MainForm.Visible = false;
199200 if (confirmDialog())
200201 {
201202 VMControl(VMCTRL.GO_RESET);
202203 }
204+ notifyIcon_MainForm.Visible = true;
203205 }
204206
205207 private void ToolStripMenuItem_PowerOff_Click(object sender, EventArgs e)
206208 {
207209 // open dialog
210+ notifyIcon_MainForm.Visible = false;
208211 if (confirmDialog())
209212 {
210213 VMControl(VMCTRL.GO_POWER_OFF);
211214 }
215+ notifyIcon_MainForm.Visible = true;
212216 }
213217
214218 private void ToolStripMenuItem_About_Click(object sender, EventArgs e)
215219 {
216220 // About dialog
221+ notifyIcon_MainForm.Visible = false;
217222 AboutDialog();
223+ notifyIcon_MainForm.Visible = true;
218224 }
219225
220226 private void ToolStripMenuItem_Exit_Click(object sender, EventArgs e)
--- a/VMwPlayerTaskTray/Properties/AssemblyInfo.cs
+++ b/VMwPlayerTaskTray/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
3232 // すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
3333 // 既定値にすることができます:
3434 // [assembly: AssemblyVersion("1.0.*")]
35-[assembly: AssemblyVersion("1.2.0.*")]
36-[assembly: AssemblyFileVersion("1.2.0.0")]
35+[assembly: AssemblyVersion("1.2.1.*")]
36+[assembly: AssemblyFileVersion("1.2.1.0")]
--- a/readme.txt
+++ b/readme.txt
@@ -37,8 +37,8 @@ Thanks to VMware,Inc and Microsoft Corporation.
3737
3838 Rlease & modify
3939 --- Date --- Ver. -- Modify --
40- 2014/04/01 1.0.0 First release for VMware Player 6.0.2 and VMware VIX 1.13.2.
41- 2014/12/26 1.0.1 Changed developing environment to VMware Player 7.0.0 and VMware VIX 1.14.0.
40+ 2014/04/01 1.0.0 First release for VMware Player 6.0.2 and VMware VIX 1.13.2.
41+ 2014/12/26 1.0.1 Changed developing environment to VMware Player 7.0.0 and VMware VIX 1.14.0.
4242 2015/01/05 1.0.1 Improved await proc and added readme.txt.
4343 2015/01/06 1.0.2 Improved IO exception and fixed some bugs.
4444 2015/01/07 1.0.3 Changed to not check .vmx file existing when started and running.
@@ -57,6 +57,7 @@ Rlease & modify
5757 2015/09/25 1.1.9 Improved moving window timing.
5858 2015/09/27 1.1.10 Improved code.
5959 2015/10/02 1.2.0 Improved code and eliminated 'Interop.VixCOM.dll'.
60+ 2015/10/09 1.2.1 Fixed dialogs bug.
6061
6162
6263