Changeset 8 for Common/Prompt.cs
- Timestamp:
- Aug 12, 2019, 12:33:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/Prompt.cs
r6 r8 21 21 StartPosition = FormStartPosition.CenterScreen, 22 22 }; 23 Label textLabel = new Label() { Left = 50, Top = 20, Text = text };23 Label textLabel = new Label() { Left = 50, Top = 20, AutoSize = true, Text = text }; 24 24 TextBox textBox = new TextBox() { Left = 50, Top = 44, Width = 400, Text = initialValue }; 25 25 textBox.SelectAll(); … … 216 216 StartPosition = FormStartPosition.CenterScreen, 217 217 }; 218 Label textLabel = new Label() { Left = 50, Top = 20, Text = text };218 Label textLabel = new Label() { Left = 50, Top = 20, AutoSize = true, Text = text }; 219 219 RichTextBox textBox = new RichTextBox() { Left = 50, Top = 44, Width = 400, Height = dataSize, Text = initialValue }; 220 220 textBox.SelectAll();
Note:
See TracChangeset
for help on using the changeset viewer.