1

我已经实现了以下(如此所述)以返回窗口的 Aero 外观。尽管解决此问题需要 Windows 窗体程序集没有意义。(因为它确实具有航空外观。)

System.Windows.Forms.Application.VisualStyleState = System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled;

(实施System.Windows.Forms.Application.EnableVisualStyles();没有奏效。在这里提到 。)但是虽然我得到了 Aero 外观 - 我失去了应用程序图标。

全屏前:

在此处输入图像描述

全屏后:

在此处输入图像描述

如何找回图标?

(我使用的是 Windows 7 64 位。并graphics.ToggleFullScreen();Draw方法中使用。)

4

1 回答 1

0

解决了。

System.Windows.Forms.Form MyGameForm = (System.Windows.Forms.Form)System.Windows.Forms.Form.FromHandle(Window.Handle);
MyGameForm.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
于 2013-06-18T17:37:44.970 回答