Make labels right-aligned (like Bless Hex Editor)

This commit is contained in:
Michael Becker 2019-09-09 12:24:45 -04:00
parent feb5cbcee5
commit 763f1ccce3

View File

@ -367,6 +367,7 @@ namespace UniversalEditor.Editors.Binary
{
Label lbl = new Label();
lbl.Text = converters[i].Label;
lbl.HorizontalAlignment = HorizontalAlignment.Right;
this.conversionPanel.Controls.Add(lbl, new GridLayout.Constraints(r, c));
TextBox txt = new TextBox();