OSDN Git Service

全画面モード時は、マウスかーろすを表示しないように修正。
authorくまかみ工房 <kumakamikoubou@gmail.com>
Tue, 20 Jun 2017 06:45:04 +0000 (15:45 +0900)
committerくまかみ工房 <kumakamikoubou@gmail.com>
Tue, 20 Jun 2017 06:45:04 +0000 (15:45 +0900)
FDK/ApplicationForm.cs

index 0dd75e0..f28a8ee 100644 (file)
@@ -36,6 +36,7 @@ namespace FDK
                                        this.ClientSize = this._ウィンドウモードの情報のバックアップ.clientSize;
                                        this.FormBorderStyle = this._ウィンドウモードの情報のバックアップ.formBorderStyle;
 
+                                       Cursor.Show();
                                        this.IsFullscreen = false;
                                }
                                else
@@ -50,6 +51,7 @@ namespace FDK
                                        this.FormBorderStyle = FormBorderStyle.None;
                                        this.WindowState = FormWindowState.Maximized;
 
+                                       Cursor.Hide();
                                        this.IsFullscreen = true;
                                }
                        }