示例#1
0
        public void OnOpenExplorer(ExplorerItem argItem)
        {
            ExplorerItemEventHandler temp = this.TryOpenExplorer;

            if (temp != null)
            {
                temp(this, argItem.Path);
            }
        }
示例#2
0
        private void OnFolderChanged(string argFolder)
        {
            ExplorerItemEventHandler temp = this.FolderChanged;

            if (temp != null)
            {
                temp(this, argFolder);
            }
        }
示例#3
0
        public void OnItemChosen(ExplorerItem argItem)
        {
            ExplorerItemEventHandler temp = this.ItemChosen;

            if (temp != null)
            {
                temp(this, argItem.Path);
            }
        }
示例#4
0
        private void OnRunItem(string argFile)
        {
            ExplorerItemEventHandler temp = this.RunFile;

            if (temp != null)
            {
                temp(this, argFile);
            }
        }