在c#WinForm
中设置属性MaximizedBounds时出错无法将值格式化为所需类型。
当我设置值
时 MaximizedBounds = Screen.GetWorkingArea(this);
并运行应用程序我收到错误
无法将值格式化为所需类型。
答案 0 :(得分:0)
使用此:
MaximizedBounds = new Rectangle(0, 0,
Screen.FromControl(this).WorkingArea.Width,
Screen.FromControl(this).WorkingArea.Height);