回答:
ここでの大きな問題は、ラベルが高さを自動的に変更しないことです(幅のみ)。これを正しく行うには、ラベルをサブクラス化し、垂直方向のサイズ変更ロジックを含める必要があります。
基本的に、OnPaintで行う必要があるのは次のとおりです。
また、コンストラクターでResizeRedrawスタイルフラグを設定する必要があります。
実際、受け入れられた答えは不必要に複雑です。
ラベルをAutoSizeに設定すると、入力したテキストとともに自動的に拡大します。(これには垂直成長が含まれます。)
特定の幅で折り返す場合は、MaximumSizeプロパティを設定できます。
myLabel.MaximumSize = new Size(100, 0);
myLabel.AutoSize = true;
テストされ、動作します。
Dock
、ラベルとパネルの両方のプロパティをに設定できるはずTop
です。
OnResize
親と連絡myLabel.MaximumSize = new Size(Bounds.Width, 0);
私の場合(パネルのラベル)、とを設定label.AutoSize = false
しましたlabel.Dock = Fill
。ラベルテキストは自動的に折り返されます。
以下からのMSDN、ラベルで自動的にラップテキスト:
using System;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
public class GrowLabel : Label {
private bool mGrowing;
public GrowLabel() {
this.AutoSize = false;
}
private void resizeLabel() {
if (mGrowing)
return;
try {
mGrowing = true;
Size sz = new Size(this.Width, Int32.MaxValue);
sz = TextRenderer.MeasureText(this.Text, this.Font, sz, TextFormatFlags.WordBreak);
this.Height = sz.Height;
}
finally {
mGrowing = false;
}
}
protected override void OnTextChanged(EventArgs e) {
base.OnTextChanged(e);
resizeLabel();
}
protected override void OnFontChanged(EventArgs e) {
base.OnFontChanged(e);
resizeLabel();
}
protected override void OnSizeChanged(EventArgs e) {
base.OnSizeChanged(e);
resizeLabel();
}
}
Height = sz.Height + Padding.Vertical;
)
簡単な解決策を見つける必要があったので、次のプロパティを持つTextBoxを使用しました。
var myLabel = new TextBox
{
Text = "xxx xxx xxx",
WordWrap = true,
AutoSize = false,
Enabled = false,
Size = new Size(60, 30),
BorderStyle = BorderStyle.None,
Multiline = true,
BackColor = container.BackColor
};
@hypoの答えに基づいてより良いものを持っている
public class GrowLabel : Label {
private bool mGrowing;
public GrowLabel() {
this.AutoSize = false;
}
private void resizeLabel() {
if (mGrowing)
return;
try {
mGrowing = true;
int width = this.Parent == null ? this.Width : this.Parent.Width;
Size sz = new Size(this.Width, Int32.MaxValue);
sz = TextRenderer.MeasureText(this.Text, this.Font, sz, TextFormatFlags.WordBreak);
this.Height = sz.Height + Padding.Bottom + Padding.Top;
} finally {
mGrowing = false;
}
}
protected override void OnTextChanged(EventArgs e) {
base.OnTextChanged(e);
resizeLabel();
}
protected override void OnFontChanged(EventArgs e) {
base.OnFontChanged(e);
resizeLabel();
}
protected override void OnSizeChanged(EventArgs e) {
base.OnSizeChanged(e);
resizeLabel();
}
}
int width = this.Parent == null ? this.Width : this.Parent.Width;
これにより、パネルなどの親にドッキングされたときに自動拡張ラベルを使用できます。
this.Height = sz.Height + Padding.Bottom + Padding.Top;
ここでは、上部と下部のパディングを処理します。
ClientSizeChanged event
パネルのを処理して、ラベルがスペースを埋めるようにします。
private void Panel2_ClientSizeChanged(object sender, EventArgs e)
{
label1.MaximumSize = new Size((sender as Control).ClientSize.Width - label1.Left, 10000);
}
Auto-Size
ラベルに設定true
Dock
ラベルに設定Fill
パネルがラベルの幅を制限している場合は、ラベルのAnchorプロパティをLeft、Rightに設定し、AutoSizeをtrueに設定できます。これは、概念的には、PanelのSizeChanged
イベントをリッスンnew Size(((Control)sender).Size.Width, 0)
し、前の回答で提案されているようにラベルのMaximumSizeをに更新することと似ています。Anchorプロパティにリストされているすべての側は、含まれているControlのそれぞれの内側に固定されています。したがって、アンカーに2つの反対側をリストすると、コントロールの寸法が効果的に設定されます。左と右にアンカーするとコントロールのWidthプロパティが設定され、上と下にアンカーすると高さプロパティが設定されます。
このソリューションは、C#として:
label.Anchor = AnchorStyles.Left | AnchorStyles.Right;
label.AutoSize = true;
コンテンツとは別にラベルの幅を設定したい場合は、最も簡単な方法は次のとおりです。
これでラベルの幅は一定になりましたが、高さが自動的に調整されます。
次に、ダイナミックテキストの場合は、フォントサイズを小さくします。必要に応じて、ラベルテキストが設定されているサブでこのスニペットを使用します。
If Me.Size.Height - (Label12.Location.Y + Label12.Height) < 20 Then
Dim naam As String = Label12.Font.Name
Dim size As Single = Label12.Font.SizeInPoints - 1
Label12.Font = New Font(naam, size)
End If
これは、InpitWindow:Designer for Labelと呼ばれるフォームで私を助けました:
AutoSize = true;
Achors = Top, Left, Right.
private void InputWindow_Shown(object sender, EventArgs e) {
lbCaption.MaximumSize = new Size(this.ClientSize.Width - btOK.Width - btOK.Margin.Left - btOK.Margin.Right -
lbCaption.Margin.Right - lbCaption.Margin.Left,
Screen.GetWorkingArea(this).Height / 2);
this.Height = this.Height + (lbCaption.Height - btOK.Height - btCancel.Height);
//Uncomment this line to prevent form height chage to values lower than initial height
//this.MinimumSize = new Size(this.MinimumSize.Width, this.Height);
}
//Use this handler if you want your label change it size according to form clientsize.
private void InputWindow_ClientSizeChanged(object sender, EventArgs e) {
lbCaption.MaximumSize = new Size(this.ClientSize.Width - btOK.Width - btOK.Margin.Left * 2 - btOK.Margin.Right * 2 -
lbCaption.Margin.Right * 2 - lbCaption.Margin.Left * 2,
Screen.GetWorkingArea(this).Height / 2);
}
style="overflow:Scroll"
以下のHTMLのようにラベルで使用します。これにより、パネル内のラベルにスクロールバーが追加されます。
<asp:Label
ID="txtAOI"
runat="server"
style="overflow:Scroll"
CssClass="areatext"
BackColor="White"
BorderColor="Gray"
BorderWidth="1"
Width = "900" ></asp:Label>