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

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