Changeset 15 for Common/FormFind.cs


Ignore:
Timestamp:
Jun 18, 2024, 12:15:33 PM (5 months ago)
Author:
chronos
Message:
  • Modified: Updated files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/FormFind.cs

    r14 r15  
    66namespace Common
    77{
    8     public partial class FormFind : Form
     8    public partial class FormFind : FormEx
    99    {
    1010        public RichTextBoxEx richTextBox;
     
    8888        private void FormFind_Load(object sender, EventArgs e)
    8989        {
    90             Theme.UseTheme(this);
    91             DpiScaling.Apply(this);
    92             Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
    93             new FormDimensions().Load(this, Owner);
    9490            comboBoxWhat.Focus();
    95             comboBoxWhat.regSubKey = regSubKey + "\\History";
     91            comboBoxWhat.RegSubKey = regSubKey + "\\History";
    9692            LoadFromRegistry();
    9793            UpdateInterface();
     
    107103            SaveToRegistry();
    108104            richTextBox.FormFind = null;
    109             new FormDimensions().Save(this, Owner);
    110105        }
    111106
     
    115110            {
    116111                buttonFindNext.PerformClick();
    117             } else
    118             if (e.KeyChar == 27)
    119             {
    120                 Close();
    121112            }
    122113        }
     
    144135            if (regKey == null) regKey = Application.UserAppDataRegistry.CreateSubKey(regSubKey);
    145136
    146            
    147137            regKey.SetValue("MatchWholeWordOnly", checkBoxMatchWholeWordOnly.Checked);
    148138            regKey.SetValue("MatchCase", checkBoxMatchCase.Checked);
     
    150140            comboBoxWhat.SaveToRegistry();
    151141        }
    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         }
    172142    }
    173143}
Note: See TracChangeset for help on using the changeset viewer.