我正在尝试创建一个内部带有白色标签的表单,当我点击某个表单时,表单将会消失并仅显示标签。 到目前为止,我尝试将TransparencyKey放在Lime上,当我点击某些内容时,我将BackColor更改为Lime,并将FormBorderStyle设置为None。 但问题是我现在正在做的是白色标签没有边框,所以你不能真正看到它。 我知道BorderStyle属性,这不是我想要的,我希望边框正好在文本周围,所以你可以看到其他东西上面的文字。 有没有办法为标签添加边框?
顺便说一下,这是我的代码:
private void label1_Click(object sender, EventArgs e)
{
if (BackColor == Color.Lime)
{
FormBorderStyle = FormBorderStyle.Sizable;
BackColor = Color.Black;
Location = new Point(Left - 8, Top - 30);
}
else
{
FormBorderStyle = FormBorderStyle.None;
BackColor = Color.Lime;
Location = new Point(Left + 8, Top + 30);
}
}
答案 0 :(得分:7)
如果有人还在寻找,这就是我所做的(主要是从this网站复制)
例如,创建一个新类CustomLabel.cs。这是一个例子:
public class CustomLabel : Label
{
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
ControlPaint.DrawBorder(e.Graphics, ClientRectangle,
Color.Red, 5, ButtonBorderStyle.Solid,
Color.Red, 5, ButtonBorderStyle.Solid,
Color.Red, 5, ButtonBorderStyle.Solid,
Color.Red, 5, ButtonBorderStyle.Solid);
}
}
然后您可以像这样使用它:
Form newForm = new Form();
CustomLabel newLabel = new CustomLabel();
newForm.Controls.Add(newLabel);
newLabel.BackColor = Color.Black;
newLabel.Font = new System.Drawing.Font("Microsoft Arial", 18F,
FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
newLabel.ForeColor = Color.Crimson;
newLabel.Text = "Some text on a topmost transparent form window";
newForm.Show();
newForm.TopMost = true;
newLabel.AutoSize = true;
newLabel.Location = new Point(230, 375);
答案 1 :(得分:3)
很确定; Label上有一个BorderStyle属性,可以设置为FixedSingle或Fixed3D。 FixedSingle是ForeColor颜色的单像素边框,而Fixed3D是使用标签背景灰度的斜面3D边框。
编辑:好的,更确切地说明需要什么。在我看来,你有几个选择。
将两个标签,一个放在另一个上面,使用相同的内容和格式除了后面的标签是白色,前面的标签是黑色,后面的标签偏离前面的标签在X和/或Y维度中的一个像素。你会在黑色文字后面看到一个白色的“阴影”。您甚至可以设置四个标签,每个标签在X和y中都偏移1个像素,以获得完整的“光环”。如果你想在多个地方这样做,可以将其设置为UserControl;设置控件的文本一次,控件将填充所有5个标签。您可以尝试使用字体大小或重量,但我怀疑您是否能够正确排列并在所有情况下在字母周围都有完美的1像素边框。
在洋红色背景上创建文本图像,将其环绕为白色,并将其保存为位图,并将品红色键入为透明色。然后,使用标签(或PictureBox)中的图像。
答案 2 :(得分:2)
将标签控件的BorderStyle
属性设置为FixedSingle
答案 3 :(得分:2)
答案 4 :(得分:1)
bordertyle属性怎么样? 在属性窗口中将它设置为FixedSingle。