当在父窗体上弹出子窗体时,一般设置子窗体的初始位置是居中,
//在需要展示子窗体的父窗体上写这段,注意必须设置在show方法之前Form2 f2 = new Form2(); f2.MdiParent = this; f2.StartPosition = FormStartPosition.CenterScreen; //CenterScreen相对于屏幕居中,CenterParent是相对于父窗体居中 f2.Show(); DEV中Grid禁用表头的右键菜单,设置属性如下图:
DEV中Grid禁用表头的点击排序功能,设置属性如下图:
原文地址:https://www.cnblogs.com/jiuyueBlog/p/9039774.html
时间: 2024-11-12 13:04:39