예제 #1
0
 /// <summary>
 /// Raises the <see cref="E:DeleteValue"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Savchin.Forms.Browsers.RegistryEventArgs"/> instance containing the event data.</param>
 protected virtual void OnDeleteValue(RegistryEventArgs e)
 {
     if (DeleteValue != null)
     {
         DeleteValue(this, e);
     }
 }
예제 #2
0
 /// <summary>
 /// Raises the <see cref="E:DeleteKey"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Savchin.Forms.Browsers.RegistryEventArgs"/> instance containing the event data.</param>
 protected virtual void OnDeleteKey(RegistryEventArgs e)
 {
     if (DeleteKey != null)
     {
         DeleteKey(this, e);
     }
 }