根据内容的宽度调整标签宽度

时间:2013-07-20 02:55:08

标签: c# winforms width label

我正在编写代码编辑器,并希望随着数字的增加自动调整标签的宽度。例如,对于1-9(1位数),有一个特定的宽度。然后当它达到10-99(2位数)时,标签的宽度增加。然后再为100-999(3位数)等

结果应该是这样的:

enter image description here

这是我的代码:

private void timer_countline_Tick(object sender, EventArgs e)
{
    updateNumberLabel();
}

private void updateNumberLabel()
{
    // we get index of first visible char and number of first visible line
    Point pos = new Point(0, 0);
    int firstIndex = rtb.GetCharIndexFromPosition(pos);
    int firstLine = rtb.GetLineFromCharIndex(firstIndex);

    // now we get index of last visible char and number of last visible line
    pos.X = ClientRectangle.Width;
    pos.Y = ClientRectangle.Height;
    int lastIndex = rtb.GetCharIndexFromPosition(pos);
    int lastLine = rtb.GetLineFromCharIndex(lastIndex);

    // this is point position of last visible char, we'll use its Y value for calculating numberLabel size
    pos = rtb.GetPositionFromCharIndex(lastIndex);

    // finally, renumber label
    numberLabel.Text = "";
    for (int i = firstLine; i <= lastLine + 1; i++)
        numberLabel.Text += i + 1 + "\n";
}

1 个答案:

答案 0 :(得分:4)

您可以使用 TextRenderer 来执行您想要的操作。请检查以下代码行(您应将代码行添加到标签的 TextChanged 事件)

请注意,控件的 AutoSize 属性必须设置为 False

这是为了更改控件的宽度以适应其内容的宽度。

yourLabelName.Width = TextRenderer.MeasureText(yourLabelName.Text, yourLabelName.Font).Width;

这是为了更改控件的高度以适应其内容的高度。

yourLabelName.Height = TextRenderer.MeasureText(yourLabelName.Text, yourLabelName.Font).Height;

更新1:

要更改面板宽度以水平显示其中的所有内容,您可以使用以下代码行:

yourPanelName.Width = yourLabelName.Left + yourLabelName.Width;

要更改面板高度以便在其中显示其中的所有内容,您可以使用以下代码行:

yourPanelName.Height = yourLabelName.Top + yourLabelName.Height;

更新2:

如果您使用 SplitContainer控件,则必须按如下方式更改SplitContainer的属性:

FixedPanel = none
IsSplitterFixed = False

然后,您可以使用以下代码行来实现您想要的目标:

要更改 SplitContainer面板宽度 以横向显示其中的所有内容,您可以使用以下代码行:

int yourLabelNameWidth = TextRenderer.MeasureText(yourLabelName.Text, yourLabelName.Font).Width;
yourSplitContainerName.SplitterDistance = yourLabelName.Left + yourLabelNameWidth;
yourLabelName.Width = yourLabelName.Left + yourLabelNameWidth;