分享
 
 
 

Win Form 的 Splitter 使用心得

王朝system·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

Win Form 的 Splitter 使用心得

今天作个分析html代码,然后再批量下载的程序,其中用到 Splitter (分割条),编译程序后,发现分割条不起作用,拖动分割条的时候,相邻的两个 Panel 没有变换大小。为这个几乎花了一天时间,也没找到原因。包括到其他机子上测试。

后来,再次作一个完全独立的测试项目,发现 Splitter 的使用有个算是 bug 的问题,如果你首先放两个 Panel ,然后再放一个 Splitter 。(注意这时候的次序)就会产生我上面出现的问题。这时候代码中的 InitializeComponent 函数部分代码如下:

private void InitializeComponent()

{

//

// ... 其他代码

//

this.panel1 = new System.Windows.Forms.Panel();

this.panel2 = new System.Windows.Forms.Panel();

this.splitter1 = new System.Windows.Forms.Splitter();

this.panel2.SuspendLayout();

this.SuspendLayout();

//

// ... 其他代码

//

//

// panel1

//

this.panel1.Dock = System.Windows.Forms.DockStyle.Left;

this.panel1.Location = new System.Drawing.Point(0, 42);

this.panel1.Name = "panel1";

this.panel1.Size = new System.Drawing.Size(120, 209);

this.panel1.TabIndex = 6;

this.panel1.Resize += new System.EventHandler(this.panel2_Resize);

this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);

//

// panel2

//

this.panel2.Controls.Add(this.splitter1);

this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;

this.panel2.Location = new System.Drawing.Point(120, 42);

this.panel2.Name = "panel2";

this.panel2.Size = new System.Drawing.Size(328, 209);

this.panel2.TabIndex = 7;

this.panel2.Resize += new System.EventHandler(this.panel2_Resize);

this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);

//

// splitter1

//

this.splitter1.BackColor = System.Drawing.SystemColors.Desktop;

this.splitter1.Location = new System.Drawing.Point(0, 0);

this.splitter1.Name = "splitter1";

this.splitter1.Size = new System.Drawing.Size(3, 209);

this.splitter1.TabIndex = 0;

this.splitter1.TabStop = false;

//

// Form1

//

this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

this.ClientSize = new System.Drawing.Size(448, 273);

this.Controls.Add(this.panel2);

this.Controls.Add(this.panel1);

this.Controls.Add(this.toolBar1);

this.Controls.Add(this.statusBar1);

this.Name = "Form1";

this.Text = "站点下载工具 2003年9月21日";

this.panel2.ResumeLayout(false);

this.ResumeLayout(false);

}

注意:这时候的代码中的顺序。这时候,程序的执行是有问题的。分隔条会不起作用。

但是如果你把这三个控件放入顺序修改为下面的顺序就没有问题了。

1、放入一个 Panel 比如:panel1 然后设置他的 Dock 属性为:Left;

2、放入一个 Splitter 比如:splitter1 设置它的背景颜色为一个特殊的颜色,便于看执行效果;

3、放入一个 Panel 比如:panel2 然后设置他的 Dock 属性为:Fill;

4、编译执行程序,这时候就没有问题了。

这时候正确的代码应该是:( InitializeComponent 函数部分)

private void InitializeComponent()

{

//

// ... 其他代码

//

this.panel1 = new System.Windows.Forms.Panel();

this.panel2 = new System.Windows.Forms.Panel();

this.splitter1 = new System.Windows.Forms.Splitter();

this.panel2.SuspendLayout();

this.SuspendLayout();

//

// ... 其他代码

//

//

// panel1

//

this.panel1.Dock = System.Windows.Forms.DockStyle.Left;

this.panel1.Location = new System.Drawing.Point(0, 42);

this.panel1.Name = "panel1";

this.panel1.Size = new System.Drawing.Size(200, 209);

this.panel1.TabIndex = 6;

//

// panel2

//

this.panel2.Controls.Add(this.splitter1);

this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;

this.panel2.Location = new System.Drawing.Point(200, 42);

this.panel2.Name = "panel2";

this.panel2.Size = new System.Drawing.Size(248, 209);

this.panel2.TabIndex = 7;

//

// splitter1

//

this.splitter1.BackColor = System.Drawing.SystemColors.Desktop;

this.splitter1.Location = new System.Drawing.Point(0, 0);

this.splitter1.Name = "splitter1";

this.splitter1.Size = new System.Drawing.Size(3, 209);

this.splitter1.TabIndex = 0;

this.splitter1.TabStop = false;

//

// Form1

//

this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

this.ClientSize = new System.Drawing.Size(448, 273);

this.Controls.Add(this.panel2);

this.Controls.Add(this.panel1);

this.Controls.Add(this.toolBar1);

this.Controls.Add(this.statusBar1);

this.Menu = this.mainMenu1;

this.Name = "Form1";

this.Text = "站点下载工具 2003年9月21日";

this.Load += new System.EventHandler(this.Form1_Load);

this.panel2.ResumeLayout(false);

this.ResumeLayout(false);

}

我程序的执行环境是 win2003 标准英文版 VS.net 2003 中文版

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有