Visual C# Express 中的 dataGridView 在 Windows Vista 上无法调整大小
我最近升级了我的主计算机,现在在 Windows Vista 中工作。 我的开发环境是 Microsoft Visual C# 2008 Express Edition。
我有一个使用 DataGridView 的程序,我开始在我的旧 Win XP 机器上开发该程序。 现在,在 Vista 上一切正常,除了当我调整主应用程序窗口大小时 dataGridView 不会调整大小。 这适用于 Win XP 机器。
dataGridView Anchor 属性设置为“上、左、下、右”。
??
提前致谢!
-A
I recently upgraded my main computer and am now working in windows Vista. My dev environment is Microsoft Visual C# 2008 Express Edition.
I have a program that uses a DataGridView that I started developing on my old Win XP machine. Everything is now working fine on Vista except that the dataGridView won't resize when I resize the main application window. This works on the Win XP machine.
The dataGridView Anchor property is set to "Top, Left, Bottom, Right".
??
Thanks in advance!
-A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保 Dock 属性设置为 Fill(选取布局中心的部分),并且 MaximumSize 未设置 (0,0)。 然后让我知道是否仍然没有调整大小。
Make sure the the Dock property is set to Fill (pick the part in the center of the layout), and that the MaximumSize is not set (0,0). Then let me know if is still does not resize.