如何通过单击窗体边框来调整窗体的大小?我甚至将FormBorderStyle
设置为sizable
。我错过了什么?
下面是表单的属性:
Designer.cs窗体部件:
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(750, 378);
this.Controls.Add(this.rtxt_inactiveprograms);
this.Controls.Add(this.lbl_time);
this.Controls.Add(this.lsv_runningapps);
this.Controls.Add(this.btn_start);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.lst_runningprocess);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.txt_pcname);
this.Controls.Add(this.btn_ping);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
2条答案
按热度按时间kxkpmulp1#
这里的大小调整问题是,您只需要将
AutoSizeMode
从GrowAndShrink
更改为GrowOnly
。但是在这里调整大小不会影响表单的内容,也不会根据您的需要调整分辨率。
ovfsdjhp2#
将
FormBorderStyle
设置为Sizable。