#1 |
Form属性,max设置为false
|
#2 |
FormBorderStyle = FormBorderStyle.None!
|
#3 |
里面的maximizeBox和minimizeBox属性改为false
|
#4 |
|
#5 |
回复3楼: MaximizeBox和MinimizeBox属性改为False这个应该有用吧。 |
#6 |
回复5楼: 回复以上,最大化是一定要用到的,怎么以代码来修改 |
#820分 |
|
#9 |
LZ怎么解决的啊?
|
#10 |
在主窗体菜单ItemAdded事件中加入代码:if (e.Item.Text.Length == 0 || e.Item.Text == “还原(&R)” || e.Item.Text == “最小化(&N)”)
{ e.Item.Visible = false; } |