public void OnOpenExplorer(ExplorerItem argItem) { ExplorerItemEventHandler temp = this.TryOpenExplorer; if (temp != null) { temp(this, argItem.Path); } }
private void OnFolderChanged(string argFolder) { ExplorerItemEventHandler temp = this.FolderChanged; if (temp != null) { temp(this, argFolder); } }
public void OnItemChosen(ExplorerItem argItem) { ExplorerItemEventHandler temp = this.ItemChosen; if (temp != null) { temp(this, argItem.Path); } }
private void OnRunItem(string argFile) { ExplorerItemEventHandler temp = this.RunFile; if (temp != null) { temp(this, argFile); } }