diff --git a/CSharp/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/Editors/Executable/ExecutableEditor.cs b/CSharp/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/Editors/Executable/ExecutableEditor.cs index 4dfee88f..06253747 100644 --- a/CSharp/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/Editors/Executable/ExecutableEditor.cs +++ b/CSharp/Plugins.UserInterface/UniversalEditor.Plugins.Executable.UserInterface/Editors/Executable/ExecutableEditor.cs @@ -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();