在c#WinForm中设置属性MaximizedBounds时出错

时间:2014-01-30 11:08:41

标签: c# winforms

在c#WinForm

中设置属性MaximizedBounds时出错

无法将值格式化为所需类型。

当我设置值

        MaximizedBounds = Screen.GetWorkingArea(this);

并运行应用程序我收到错误

  

无法将值格式化为所需类型。

1 个答案:

答案 0 :(得分:0)

使用此:

MaximizedBounds = new Rectangle(0, 0,
    Screen.FromControl(this).WorkingArea.Width,
    Screen.FromControl(this).WorkingArea.Height);