Right-aligned labels in WinForms

穿精又带淫゛_ 提交于 2019-12-09 02:24:58

问题


The most obvious way to right-align a Label in WinForms doesn't work: setting anchor to Top/Bottom Right and TextAlign to TopRight. If the text changes the label's Left coordinate remains unchanged instead of the Right coordinate (which, one might argue, is a bug).

For this reason I've always used a full-width TableLayoutPanel for right-aligned labels. However this is not always very convenient, depending on the layout in question...

So, I wonder if there are any other ways to keep a Label right-aligned in WinForms that never occurred to me?


回答1:


One simple option is to disable AutoSize (set to false) and over-size it so there is spare space.

Alternatively, perhaps use Dock instead of just Anchor, although this has a different meaning, so you may need to put it in a Panel or similar). Ultimately this works like the first - by over-sizing it in the first place; so perhaps the first option is simpler.




回答2:


Using a TableLayoutPanel with docked labels is the only reliable method that I've found for placing right-aligned labels in Winforms. Turning off AutoSize and using oversized labels seems to cause strange anomalies for High DPI users.




回答3:


Using a FlowLayoutPanel to do it works very well.

flowLayoutPanel.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
flowLayoutPanel2.Controls.Add(label);

Then, just make sure that the flowLayoutPanel is large enough for the label to expand.




回答4:


Here's what worked for me on a standard form

  • Set AutoSize property off for just the Labels to be right aligned
  • Make all the fields the same size (perhaps this isn't really required) using the Layout toolbar
  • Multi-select the labels and right align them using the Layout toolbar, position where desired
  • Set TextAlign property to one of the xxxRight settings, e.g, TopRight



回答5:


Well as Sphax noticed you have to:

  1. Set AutoSize to false
  2. Set TextAlign to Right, for example to MiddleRight
  3. Resize label to real size using MeasureString

Code:

label.AutoSize = false; 
label.TextAlign = ContentAlignment.MiddleRight;    

int yourWidthHere = 100;    
using (Graphics g = label.CreateGraphics())    
{    
     SizeF size = g.MeasureString(text, label.Font, yourWidthHere);    
     label.Height = (int)Math.Ceiling(size.Height);    
     label.Text = text;    
}   



回答6:


if you set the form property RightToLeft = yes; so you should not use the Text Align property just set the Anchor. try this approaches:

Form.righttoleft = yes;
label.anchor = Top, Right;
label.TextAlign = TopLeft;

or

Form.righttoleft = No;
label.anchor = Top, Right;
label.TextAlign = TopRight;

or

Form.righttoleft = yes;
label.righttoleft = No;
label.anchor = Top, Right;
label.TextAlign = TopRight;



回答7:


The best solution for me was:

  1. Set the AutoSize property labels to false. Set the TextAlign
  2. property labels to something on the right.
  3. Resize manually the labels 1 by 1 so they can use more space.



回答8:


Attach an event handler to the labels' SizeChanged event:

private void label1_SizeChanged(object sender, EventArgs e)
{
    label1.Location = new Point(Your_Anchor_Point - label1.Width, label1.Location.Y);
}

To be more DPI friendly consider using some other control as the anchor point, i.e.

label1.Location = new Point(dataGridView1.Location.X + dataGridView1.Width - label1.Width, label1.Location.Y);

to align to the RH side of the dgv.

(BTW: I tried the Paint & TextChanged events but they seemed to sometimes get confused - probably something to do with event order particularly on opening a new form.)




回答9:


  • dynamically created label's default autosize is false.
  • if label's autosize is false. it contains extra empty space.
  • that tricks you to think its doesnt right align properly. to diagnose it, set the label's backColour to lightgreen

 int rowIndex=1;

 var lbx = new Label();
 lbx.AutoSize = true;          // default is false.
 lbx.BackColor = Color.Green;  // to see if it's aligning or not
 lbx.Text = "Iam  Autosize=true";
 lbx.Anchor = AnchorStyles.Right;
 tlPanel.Controls.Add(lbx, 0, rowIndex);

 var dtp = new DateTimePicker();
 dtp.Anchor = AnchorStyles.Left;
 tlPanel.Controls.Add(dtp, 1, rowIndex);


  //--- row 2  autosize false
 rowIndex=2;
  var lbx2 = new Label();
 lbx2.AutoSize = false;          // default is false.
 lbx2.BackColor = Color.Green;  // to see if it's aligning or not
 lbx2.Text = "AutoSz=false";
 lbx2.Anchor = AnchorStyles.Right;
 tlPanel.Controls.Add(lbx2, 0, rowIndex);

 var dtp = new DateTimePicker();
 dtp.Anchor = AnchorStyles.Left;
 tlPanel.Controls.Add(dtp, 1, rowIndex);


来源:https://stackoverflow.com/questions/1692383/right-aligned-labels-in-winforms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!