Skip to content

Commit

Permalink
friendly tips
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Mar 24, 2014
1 parent 5601968 commit 3bd8177
Show file tree
Hide file tree
Showing 4 changed files with 154 additions and 46 deletions.
8 changes: 8 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,14 @@ public static void showWnd(WndInfo[] wnds)
}
}

public static void showWndIfHided(WndInfo[] wnds)
{
foreach (WndInfo w in wnds)
{
if(!isVisible(w.hwnd))
ShowWindowAsync(w.hwnd, SW_RESTORE);
}
}

public static WndInfo refreshTitle(WndInfo wnd)
{
Expand Down
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.68")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.5.0")]
121 changes: 96 additions & 25 deletions frmConfig.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3bd8177

Please sign in to comment.