Changeset 14 for Common/FormFind.cs


Ignore:
Timestamp:
Aug 2, 2022, 11:46:25 AM (22 months ago)
Author:
chronos
Message:
  • Modified: Various improvements.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/FormFind.cs

    r13 r14  
    11using System;
    2 using System.Collections.Generic;
    3 using System.ComponentModel;
    4 using System.Data;
    52using System.Drawing;
    6 using System.Linq;
    7 using System.Text;
    8 using System.Threading.Tasks;
    93using System.Windows.Forms;
    104using Microsoft.Win32;
     
    9690            Theme.UseTheme(this);
    9791            DpiScaling.Apply(this);
    98             this.Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
     92            Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
    9993            new FormDimensions().Load(this, Owner);
    10094            comboBoxWhat.Focus();
     
    112106        {
    113107            SaveToRegistry();
    114             richTextBox.formFind = null;
     108            richTextBox.FormFind = null;
    115109            new FormDimensions().Save(this, Owner);
    116110        }
     
    156150            comboBoxWhat.SaveToRegistry();
    157151        }
     152
     153        private void comboBoxWhat_SelectedIndexChanged(object sender, EventArgs e)
     154        {
     155
     156        }
     157
     158        private void label1_Click(object sender, EventArgs e)
     159        {
     160
     161        }
     162
     163        private void checkBoxMatchWholeWordOnly_CheckedChanged(object sender, EventArgs e)
     164        {
     165
     166        }
     167
     168        private void checkBoxMatchCase_CheckedChanged(object sender, EventArgs e)
     169        {
     170
     171        }
    158172    }
    159173}
Note: See TracChangeset for help on using the changeset viewer.