Cleans up TextPrompt()

This commit is contained in:
Cyberboss
2017-11-01 13:48:33 -04:00
parent 3503453ae9
commit c3075876ce
3 changed files with 6 additions and 8 deletions
+3 -1
View File
@@ -57,7 +57,9 @@ namespace TGControlPanel
Height = 150,
FormBorderStyle = FormBorderStyle.FixedDialog,
Text = caption,
StartPosition = FormStartPosition.CenterScreen
StartPosition = FormStartPosition.CenterScreen,
MaximizeBox = false,
MinimizeBox = false,
};
Label textLabel = new Label() { Left = 50, Top = 20, Text = text, AutoSize = true };
TextBox textBox = new TextBox() { Left = 50, Top = 50, Width = 400 };