/// <summary> /// Fires the PathChanged event /// </summary> /// <param name="e">Arguments to pass to the event</param> private void OnPathChanged(RootFolderPathChangedEventArgs e) { if (PathChanged != null) { PathChanged(this, e); } }
private void rootFolderDialog_PathChanged(object sender, RootFolderPathChangedEventArgs e) { OnPathChanged(e); }