예제 #1
0
        public HelpForm()
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();

            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //

            pathLabel.Text = OptionsReader.GetOptionsFilePath();
        }
예제 #2
0
        public MainForm()
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();

            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //

            fctb.Font = textFont;

            ApplyTheme(OptionsReader.Theme);

            OptionsReader.GetHighlightOption();

            saved = true;
        }
예제 #3
0
 void ChangedRadioButtonCheckedChanged(object sender, EventArgs e)
 {
     OptionsReader.SetHighlightOption("changed");
     highlightRangeLabel.Text = changedDescription;
 }
예제 #4
0
 void VisibleRadioButtonCheckedChanged(object sender, EventArgs e)
 {
     OptionsReader.SetHighlightOption("visible");
     highlightRangeLabel.Text = visibleDescription;
 }