Inheritance: System.EventArgs
Example #1
0
        protected virtual void OnSaveHistory(MruHistoryEventArgs e)
        {
            var handler = SaveHistory;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #2
0
 protected virtual void OnSaveHistory(MruHistoryEventArgs e)
 {
     var handler = SaveHistory;
     if (handler != null)
         handler(this, e);
 }
Example #3
0
 private void _path_SaveHistory(object sender, MruHistoryEventArgs e)
 {
     OnSaveHistory(e);
 }
Example #4
0
 private void _path_LoadHistory(object sender, MruHistoryEventArgs e)
 {
     OnLoadHistory(e);
 }
Example #5
0
 private void _path_SaveHistory(object sender, MruHistoryEventArgs e)
 {
     OnSaveHistory(e);
 }
Example #6
0
 private void _path_LoadHistory(object sender, MruHistoryEventArgs e)
 {
     OnLoadHistory(e);
 }