通过编程方式向TableLayoutPanel添加控件的行为根据初始线程的不同而不同
本文关键字:线程 方式 编程 TableLayoutPanel 控件 添加 | 更新日期: 2023-09-27 18:12:41
我正在创建一个WinForm项目,显示来自服务器和客户端的消息。客户端消息是通过Click和KeyPress等标准UI事件添加的。服务器消息是通过一个后台线程添加的,该后台线程正在监听消息,并在消息到达时向UI发出"警报"。"警报"通过一个EventHandler发生,然后使用Invoke方法,因为我们正在请求从一个没有创建UI的线程修改UI。
当从客户端添加消息时,它们显示为所需的(即正确大小,包装和调整大小执行正确)。当通过Invoke从后台线程添加消息时,只有第一个消息正确显示,甚至只是初始显示。调整表单大小后,自动换行停止工作,并根据可用空间大小裁剪第一条消息。在第一行之后的信息大小完全不正确,因为它们的高度似乎被设置为1像素或非常小的东西,因此只能看到第一行字符的顶部。因为我是WinForms的新手,我怀疑我做错了什么,就以编程方式向UI添加控件的正确方式而言。
客户端和后台线程调用相同的方法来添加控件到表单;只有后台通过Invoke调用它。我不明白为什么添加的控件会根据它们所源自的事件表现出不同的行为,因为无论哪种方式,它们都是以完全相同的方式添加的。我唯一的想法是,我错过了一些明显的东西,因为我是WinForms的新手。
不管怎样,解释得够多了,下面是相关代码:
private void AddMessage(string message)
{
tableLayoutPanel1.SuspendLayout();
RichTextBox rtb = new RichTextBox();
rtb.AppendText(message);
rtb.Multiline = true;
rtb.WordWrap = true;
rtb.Dock = DockStyle.Top;
rtb.ReadOnly = true;
rtb.BorderStyle = BorderStyle.None;
rtb.ScrollBars = RichTextBoxScrollBars.None;
rtb.BackColor = Color.LightBlue;
rtb.Font = new Font("Tahoma", 8, FontStyle.Italic);
rtb.Resize += rtb_Resize;
rtb.MinimumSize = new Size(150, 15);
rtb.Margin = new Padding(1, 0, 0, 5);
rtb.Padding = new Padding(3, 3, 3, 3);
rtb.Height = rtb.GetPositionFromCharIndex(rtb.Text.Length).Y;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.AutoSize));
tableLayoutPanel1.RowCount = tableLayoutPanel1.RowStyles.Count;
tableLayoutPanel1.Controls.Add(rtb);
tableLayoutPanel1.SetColumnSpan(rtb, 2);
tableLayoutPanel1.ResumeLayout(true);
tableLayoutPanel1.AutoScrollPosition = new Point(0, tableLayoutPanel1.VerticalScroll.Maximum);
}
private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13 && !String.IsNullOrEmpty(richTextBox1.Text))
{
AddMessage(richTextBox1.Text);
richTextBox1.Clear();
}
}
public void PostMessage(object sender, MessageEventArgs e)
{
BeginInvoke(new AddMsg(AddMessage), new object[] { e.Message });
}
public delegate void AddMsg(string m);
private void rtb_Resize(object sender, EventArgs e)
{
var rtb = (RichTextBox) sender;
rtb.Height = rtb.GetPositionFromCharIndex(rtb.Text.Length).Y;
}
好了,现在再解释一下。客户端消息来自richTextBox1_KeyPress和服务器消息来自PostMessage (PostMessage被分配给后台线程的EventHandler,当它得到一个消息)。你可以看到调用AddMessage,它添加了一个RichTextBox和消息到TableLayoutPanel。rtb_Resize方法包含了我在网上找到的一种方法的逻辑,让一个RickTextBox自动调整大小,因为显然它不支持这个;也许这就是我的问题的根源。
我还将提供下面的设计器代码的TableLayoutPanel,因为这似乎是有帮助的和相关的其他帖子我在这里看到。
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoScroll = true;
this.tableLayoutPanel1.AutoSize = true;
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel1.BackColor = System.Drawing.Color.White;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(1, 10);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(5, 5, 12, 5);
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(272, 276);
this.tableLayoutPanel1.TabIndex = 0;
TableLayoutPanel确实包含一个初始行,因为设计器不允许你有一个没有行的,但我清除了所有的行在表单的构造函数之后的标准调用InitializeComponent。
希望我已经提供了足够的这里给人们他们需要的信息,但请让我知道,如果你有任何问题或需要看到代码的其他部分,我会尽快提供他们。另外,如果有关系的话,我正在使用Visual Studio 2008和。net 3.5。
谢谢。
根据我所读到的,你正在正确地添加控件到TableLayoutPanel,但是有一件事要记住的是,TableLayoutPanel不是设计为通过编程修改的,由于它处理其RowStyles的不寻常的方式,正如你所发现的。
答案也就是说,控件没有按照预期包装的原因是您的Resize处理程序发生得太"迟"了。你的rtb_resize事件处理程序可能在TableLayoutPanel已经布局好之后被调用。理论上,您可以通过强制TableLayoutPanel在其所有内部控件布局完成后重新执行其布局来解决此问题。要做到这一点,您需要处理TableLayoutPanel的SizeChanged
事件,并在处理程序中,重新调整所有内部控件的大小,然后通过BeginInvoke调用tableLayoutPanel1.PerformLayout
。
bool _layingOut = false;
void tableLayoutPanel1_SizeChanged(object sender, EventArgs e)
{
if(_layingOut)
return;
//TODO: resize your inner controls here
//this will force the TableLayoutPanel to lay itself out a second time
_layingOut = true;
tableLayoutPanel1.BeginInvoke(new Action(() => tableLayoutPanel1.PerformLayout());
_layingOut = false;
}
另一种方式然而,我建议找到另一种不涉及TableLayoutPanel的方法。如果你需要一个特殊的布局,在WinForms中一个更理想的解决方案是创建你自己的LayoutEngine类。这允许您编写一个名为Layout
的方法,WinForms将在控件需要重新布局时调用该方法,例如在调整大小期间。然后,您可以简单地以您认为合适的任何方式指定每个子控件的位置和大小。这基本上就是TableLayoutPanel所做的。
有关创建LayoutEngine的更多信息,以及一个令人惊讶的不错的MSDN示例,请参见:http://msdn.microsoft.com/en-us/library/system.windows.forms.layout.layoutengine(v=VS.90).aspx