Ejemplo n.º 1
0
 private void pluginServer_SelectionChanged(object sender, PluginEventArgs e) {
     Update();
 }
Ejemplo n.º 2
0
 private void pluginServer_NavigationComplete(object sender, PluginEventArgs e) {
     string path = e.Address.Path;
     if(!string.IsNullOrEmpty(path) && Directory.Exists(path)) {
         ShowMemoForm(path, false);
     }
 }
Ejemplo n.º 3
0
 private void pluginServer_NavigationComplete(object sender, PluginEventArgs e) {
     Update();
 }
Ejemplo n.º 4
0
 private void pluginServer_ExplorerStateChanged(object sender, PluginEventArgs e) {
     if(e.WindowAction == ExplorerWindowActions.Minimized) {
         if(memoForm != null) {
             memoForm.HideMemoForm();
         }
     }
     else if(e.WindowAction == ExplorerWindowActions.Restored) {
         ITab selectedTab = pluginServer.SelectedTab;
         if(((selectedTab != null) && !string.IsNullOrEmpty(selectedTab.Address.Path)) && Directory.Exists(selectedTab.Address.Path)) {
             ShowMemoForm(selectedTab.Address.Path, false);
         }
     }
 }
Ejemplo n.º 5
0
 private void pluginServer_TabRemoved(object sender, PluginEventArgs e) {
 }
Ejemplo n.º 6
0
 private void pluginServer_TabChanged(object sender, PluginEventArgs e) {
 }
Ejemplo n.º 7
0
 private void pluginServer_SettingsChanged(object sender, PluginEventArgs e) {
 }
Ejemplo n.º 8
0
 private void pluginServer_NavigationComplete(object sender, PluginEventArgs e) {
     this.UpdateButtonImage(this.GetCurrentViewMode());
 }