C#自定义面板
c# custom Panel
我正在尝试创建一个包含一些按钮和标签的自定义面板。问题是我无法在代码中正确设置显示顺序。我有这样的东西:
public partial class Pallete1 : Panel
{
private Label lblAutomatic;
private Label lbldivider1;
public Pallete1():base()
{
InitializeComponent();
this.lblAutomatic = new Label();
this.lbldivider1 = new Label();
this.lblAutomatic.Size = new Size(182,21);
this.lblAutomatic.Location = new Point(0, 0);
this.lblAutomatic.ForeColor = Color.FromArgb(0, 0, 64);
this.lblAutomatic.TextAlign = ContentAlignment.MiddleCenter;
this.lblAutomatic.Text = "Automatycznie";
this.lblAutomatic.Font = new Font("Microsoft Sans Serif", 8);
this.lbldivider1.Size = new Size(2,22);
this.lbldivider1.Location = new Point(26, 0);
this.lbldivider1.ForeColor = SystemColors.ControlText;
this.lbldivider1.BackColor = SystemColors.ButtonHighlight;
this.lbldivider1.BorderStyle = BorderStyle.Fixed3D;
this.Size = new Size(182, 184);
this.BackColor = SystemColors.ButtonHighlight;
this.BorderStyle = BorderStyle.FixedSingle;
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
}
我希望 lbldivider1
在 lblAutomatic
的顶部 。当我将此项目添加到某些 WinForm
项目时,只有当我将自定义面板从一个地方拖到另一个地方时才会看到第二个标签。但是,当它不动时以及我启动应用程序时在设计器中都看不到它。
我该如何解决?
如果要将标签的位置设置在第二个之上,请使用 ZOrder 属性,如果将一个放在另一个之下,则可以选择 TableLayoutPanel 或 FlowLayoutPanel。
根据 this question 看来 ZOrder 是一个 VB 属性 在 C# 中不可用,但是在父级的 Controls
集合中有一个 SetChildIndex
.
尝试
this.Controls.SetChildIndex(lblAutomatic, 1);
this.Controls.SetChildIndex(lbldivider1, 2);
好的,如果您没有隐藏代码,以下任何一种都应该有效:
(一)
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
this.lbldivider1.BringToFront();
(B)
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
this.lblAutomatic.SendToBack();
(C) 添加时简单交换(确保 lbldivider1
在 z 顺序中排在第一位)
this.Controls.AddRange(new Control[]{this.lbldivider1, this.lblAutomatic});
我正在尝试创建一个包含一些按钮和标签的自定义面板。问题是我无法在代码中正确设置显示顺序。我有这样的东西:
public partial class Pallete1 : Panel
{
private Label lblAutomatic;
private Label lbldivider1;
public Pallete1():base()
{
InitializeComponent();
this.lblAutomatic = new Label();
this.lbldivider1 = new Label();
this.lblAutomatic.Size = new Size(182,21);
this.lblAutomatic.Location = new Point(0, 0);
this.lblAutomatic.ForeColor = Color.FromArgb(0, 0, 64);
this.lblAutomatic.TextAlign = ContentAlignment.MiddleCenter;
this.lblAutomatic.Text = "Automatycznie";
this.lblAutomatic.Font = new Font("Microsoft Sans Serif", 8);
this.lbldivider1.Size = new Size(2,22);
this.lbldivider1.Location = new Point(26, 0);
this.lbldivider1.ForeColor = SystemColors.ControlText;
this.lbldivider1.BackColor = SystemColors.ButtonHighlight;
this.lbldivider1.BorderStyle = BorderStyle.Fixed3D;
this.Size = new Size(182, 184);
this.BackColor = SystemColors.ButtonHighlight;
this.BorderStyle = BorderStyle.FixedSingle;
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
}
我希望 lbldivider1
在 lblAutomatic
的顶部 。当我将此项目添加到某些 WinForm
项目时,只有当我将自定义面板从一个地方拖到另一个地方时才会看到第二个标签。但是,当它不动时以及我启动应用程序时在设计器中都看不到它。
我该如何解决?
如果要将标签的位置设置在第二个之上,请使用 ZOrder 属性,如果将一个放在另一个之下,则可以选择 TableLayoutPanel 或 FlowLayoutPanel。
根据 this question 看来 ZOrder 是一个 VB 属性 在 C# 中不可用,但是在父级的 Controls
集合中有一个 SetChildIndex
.
尝试
this.Controls.SetChildIndex(lblAutomatic, 1);
this.Controls.SetChildIndex(lbldivider1, 2);
好的,如果您没有隐藏代码,以下任何一种都应该有效:
(一)
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
this.lbldivider1.BringToFront();
(B)
this.Controls.AddRange(new Control[]{this.lblAutomatic,this.lbldivider1});
this.lblAutomatic.SendToBack();
(C) 添加时简单交换(确保 lbldivider1
在 z 顺序中排在第一位)
this.Controls.AddRange(new Control[]{this.lbldivider1, this.lblAutomatic});