标题:关于窗体最大化
只看楼主
coolszy
Rank: 1
来 自:编程论坛
等 级:新手上路
帖 子:241
专家分:5
注 册:2007-11-3
结帖率:100%
 问题点数:0 回复次数:5 
关于窗体最大化
我做了一个程序,当我点击最大化时,那些控件没有随之变大,请问该如何设置。
搜索更多相关主题的帖子: 窗体 最大化 
2008-06-03 23:00
coolszy
Rank: 1
来 自:编程论坛
等 级:新手上路
帖 子:241
专家分:5
注 册:2007-11-3
得分:0 
大家帮我看一下子吧

天道酬勤
2008-06-04 21:32
guoxhvip
Rank: 8Rank: 8
来 自:聖西羅南看臺
等 级:贵宾
威 望:44
帖 子:4052
专家分:135
注 册:2006-10-8
得分:0 
比如说一个窗体上有一个textBox
private void Form1_Load(object sender, System.EventArgs e)
{
   this.oldHeight = this.Height - this.textBox1.Height ;
   this.oldWidth = this.Width - this.textBox1.Width ;
   this.oldLocation = this.textBox1.Location ;
}
private void Form1_Resize(object sender, System.EventArgs e)
{
   this.textBox1.Height = (this.Height - this.oldWidth) ;
   this.textBox1.Width = (this.Width - this.oldWidth) ;
   this.textBox1.Location = new Point(this.oldLocation.X,this.oldLocation.Y);
}

愛生活 && 愛編程
2008-06-04 23:08
ZHOULIANG
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2008-2-13
得分:0 
原来如此啊
谢谢了
2008-06-05 13:45
coolszy
Rank: 1
来 自:编程论坛
等 级:新手上路
帖 子:241
专家分:5
注 册:2007-11-3
得分:0 
谢谢了

天道酬勤
2008-06-05 17:30
竹下金鱼
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2011-1-21
得分:0 
  试试看
2011-05-07 10:55



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-217505-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.063524 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved