Left-align labels

This commit is contained in:
Michael Becker 2019-07-24 13:55:34 -04:00
parent 7c8bff9818
commit 60a9b9a766

View File

@ -88,8 +88,13 @@ namespace UniversalEditor.Plugins.Executable.UserInterface.Editors.Executable
tabManagedAssembly.Layout = new BoxLayout(Orientation.Vertical);
lblAssemblyName = new Label("Assembly name: ");
lblAssemblyName.HorizontalAlignment = HorizontalAlignment.Left;
txtAssemblyName = new TextBox();
lblAssemblyVersion = new Label("Assembly version: ");
lblAssemblyVersion.HorizontalAlignment = HorizontalAlignment.Left;
txtAssemblyVersion = new TextBox();
Container pnlMetadata = new Container();