示例#1
0
文件: HWND.cs 项目: sharoron/SharoLib
 /// <summary>ウィンドウを最小化します</summary>
 public void Maximize()
 {
     throw new NotImplementedException();
     NativeMethod.CloseWindow(this.Handle).CheckError();
 }
示例#2
0
文件: HWND.cs 项目: sharoron/SharoLib
 /// <summary>ウィンドウを最大化します</summary>
 public void Minimize()
 {
     NativeMethod.CloseWindow(this.Handle).CheckError();
 }