调整c#.cs表单中标签的文本大小

时间:2014-04-03 11:36:40

标签: c#

我正在尝试在Microsoft-visual-studio-2010中调整标签大小,但无法在.cs设计表单中调整大小。我想使其变大并操纵文本的属性

3 个答案:

答案 0 :(得分:0)

将其AutoSize属性设置为false!

答案 1 :(得分:0)

只需使用标签名称和' font'的各种属性。在' .cs'页面不是' designer.cs'如:

MyLabel.Font.Size = 10;
MyLabel.Bold = true;
MyLabel.Name = "Arial";

有关详细信息,请查看:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fontinfo%28v=VS.80%29.aspx

如果您希望对所有标签进行标准更改,那么可能会考虑使用CSS。

答案 2 :(得分:0)

不要在设计师中进行更改。将代码写入designer.cs所依赖的partial类。

public partial class Form1 : Form
{

    public Form1()
    {
        InitializeComponent();

        this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif",15.75F,  System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));    
    }
}

值15.75是浮动

的字体大小