Changeset 8 for Common/Prompt.cs


Ignore:
Timestamp:
Aug 12, 2019, 12:33:47 PM (5 years ago)
Author:
chronos
Message:
  • Modified: Updated files.
  • Added: ExtTools class for external program and compare tool execution.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/Prompt.cs

    r6 r8  
    2121                StartPosition = FormStartPosition.CenterScreen,
    2222            };
    23             Label textLabel = new Label() { Left = 50, Top = 20, Text = text };
     23            Label textLabel = new Label() { Left = 50, Top = 20, AutoSize = true, Text = text };
    2424            TextBox textBox = new TextBox() { Left = 50, Top = 44, Width = 400, Text = initialValue };
    2525            textBox.SelectAll();
     
    216216                StartPosition = FormStartPosition.CenterScreen,
    217217            };
    218             Label textLabel = new Label() { Left = 50, Top = 20, Text = text };
     218            Label textLabel = new Label() { Left = 50, Top = 20, AutoSize = true, Text = text };
    219219            RichTextBox textBox = new RichTextBox() { Left = 50, Top = 44, Width = 400, Height = dataSize, Text = initialValue };
    220220            textBox.SelectAll();
Note: See TracChangeset for help on using the changeset viewer.