示例#1
0
 public void OnExplorerStateChanged(ExplorerWindowActions windowAction)
 {
     if (ExplorerStateChanged != null)
     {
         ExplorerStateChanged(this, new PluginEventArgs(windowAction));
     }
 }
示例#2
0
 public void OnExplorerStateChanged(ExplorerWindowActions windowAction)
 {
     this.pluginServer.OnExplorerStateChanged(windowAction);
 }
示例#3
0
 public PluginEventArgs(ExplorerWindowActions windowAction)
 {
     this.windowAction = windowAction;
 }
示例#4
0
 public void OnExplorerStateChanged(ExplorerWindowActions windowAction)
 {
     if(ExplorerStateChanged != null) {
         ExplorerStateChanged(this, new PluginEventArgs(windowAction));
     }
 }
示例#5
0
 public PluginEventArgs(ExplorerWindowActions windowAction)
 {
     this.windowAction = windowAction;
 }