示例#1
0
 protected virtual void OnPathChanged(DocumentPathChangedEventArgs args)
 {
     if (PathChanged != null)
     {
         PathChanged(this, args);
     }
 }
示例#2
0
 protected virtual void OnPathChanged(object sender, DocumentPathChangedEventArgs args)
 {
     if (PathChanged != null)
     {
         PathChanged(sender, args);
     }
 }
示例#3
0
        protected virtual void OnPathChanged(DocumentPathChangedEventArgs e)
        {
            EventHandler <DocumentPathChangedEventArgs> handler = this.PathChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#4
0
 void OnPathChanged(DocumentPathChangedEventArgs e) => PathChanged?.Invoke(this, e);
示例#5
0
 void HandlePathChange(object sender, DocumentPathChangedEventArgs args)
 {
     pathBar.SetPath(pathDoc.CurrentPath);
 }