如何在不将Dock设置为Fill的情况下将Label置于Panel内部
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在不将Dock设置为Fill的情况下将Label置于Panel内部相关的知识,希望对你有一定的参考价值。
我试图创建一个带有边框的自定义面板,其颜色可以更改,以便在某些条件下“突出显示”面板。
小组还需要通过案文传达某些信息。为此,我在Panel中添加了一个Label。我已尝试使用规定的方法对Label进行居中,但出于某种原因,它始终将其放在Panel的左上角。我无法将Label的Dock设置为Fill,因为它掩盖了已创建的自定义边框。所以我需要做到这一点,以便Label适合边框。
Label的Anchor设置为None,其位置为
new Point((ClientSize.Width - Size.Width)/2, (ClientSize.Height - Size.Height)/2);
自定义Panel的代码是:
public class CustomPanel : Panel
{
public CustomPanel(int borderThickness, Color borderColor) : base()
{
SetStyle(ControlStyles.AllPaintingInWmPaint |
ControlStyles.UserPaint |
ControlStyles.OptimizedDoubleBuffer |
ControlStyles.ResizeRedraw, true);
BackColor = SystemColors.ActiveCaption;
BorderStyle = BorderStyle.FixedSingle;
Size = new Size(45, 45);
Margin = new Padding(0);
BorderThickness = borderThickness;
BorderColor = borderColor;
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
if (BorderStyle == BorderStyle.FixedSingle)
{
int halfThickness = BorderThickness / 2;
using (Pen p = new Pen(BorderColor, BorderThickness))
{
e.Graphics.DrawRectangle(p, new Rectangle(halfThickness,
halfThickness,
ClientSize.Width - BorderThickness, ClientSize.Height - BorderThickness));
}
}
}
public int BorderThickness { get; set; }
public Color BorderColor { get; set; }
}
表格代码是:
private void NewPanelTest_Load(object sender, EventArgs e)
{
CustomPanel cp = new CustomPanel(3, Color.Black);
// Create new Label
Label info = new Label()
{
Size = new Size(30, 30),
Text = "Info",
Anchor = AnchorStyles.None,
TextAlign = ContentAlignment.MiddleCenter,
Enabled = false,
Font = new Font("Microsoft Sans Serif", 6),
ForeColor = Color.White,
Location = new Point(ClientSize.Width/2 - Width/2, ClientSize.Height/2 - Height/2)
};
cp.Controls.Add(info);
this.Controls.Add(cp);
}
编辑:我看过类似的问题并尝试更改Label的属性,但没有结果。
// Create new Label
Label info = new Label()
{
// Same code as before
// Different code
Left = (this.ClientSize.Width - Size.Width) / 2,
Top = (this.ClientSize.Height - Size.Height) / 2,
//Location = new Point(ClientSize.Width/2 - Width/2, ClientSize.Height/2 - Height/2)
};
我也试过改变Panel的Padding,也没有结果。
Padding = new Padding(5);
编辑:尝试以编程方式将Label放置在Panel的中心(产生X = 0,Y = 0的结果)
// Create new Label
Label info = new Label()
{
// Same code as before (excluding "Left", "Top", and "Location")
};
int X = (info.ClientSize.Width - info.Width) / 2;
int Y = (info.ClientSize.Height - info.Height) / 2;
info.Location = new Point(X, Y);
MessageBox.Show(info.Location.ToString());
cp.Controls.Add(info);
我们可以通过简单的步骤实现这一点
- 将标签锚设置为左右
- 将Label AutoSize设置为false;
- 将Label TextAlign设置为MiddleCenter;
现在将标签置于面板中间。
int x = (panel1.Size.Width - label1.Size.Width) / 2;
label1.Location = new Point(x, label1.Location.Y);
将控件垂直和水平放置在容器中心
最简单的选择是使用带有1列和1行而不是TableLayoutPanel
的Panel
。将Label
放入其中,然后将标签的Anchor
设置为None
,使标签始终垂直和水平居中。
同样要绘制自定义边框,它足以处理CellPaint
的TableLayoutPanel
事件并绘制自定义边框:
private void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
var r = e.CellBounds;
r.Width--;
r.Height--;
e.Graphics.DrawRectangle(Pens.Red, r);
}
嘿,这个问题很容易解决。我假设将来你可能有一些你可能需要居中的标签,所以我做了这个功能,接受你想要居中的标签和父面板。此代码适用于Visual C#Windows窗体应用程序。在调用此函数之前,我们需要做一些事情。我们要:
- 选择标签并将其锚点设置为左,右
- 删除AutoSize
- 将标签TextAlign设置为MiddleCenter
这是您需要为我们的函数编写的代码
public void Centroid(Label label, Panel parent)
{
int x = (parent.Size.Width - label.Size.Width) / 2;
label.Location = new Point(x, label.Location.Y);
}
并调用你必须输入的函数:Centroid(label1,panel1);这假设您有一个名为label1的标签和一个名为panel 1的面板。只要它是标签和面板,您就可以将这些值替换为任何值。
希望这可以帮助你:)
以上是关于如何在不将Dock设置为Fill的情况下将Label置于Panel内部的主要内容,如果未能解决你的问题,请参考以下文章
如何在不将 LocalDateTime 字段转换为扩展的 json 对象的情况下将 java 对象转换为简单的 json 字符串?
如何在不将您的应用设为默认消息应用的情况下将短信发送到 android 中的特定应用?
我们如何在不将 ViewController 对象推入其中的情况下将对象分配给 `UINavigationController`。
有啥方法可以在不将 CIImage 转换为 UIImage 或 CGImage 的情况下将 CIImage 转换为 NSData?