public override void Close()
 {
     try
     {
         _closing = true;
         if (_tabItem != null)
         {
             _tabItem.Close();
             _tabItem = null;
         }
         if (_projectPropertiesEditor != null)
         {
             _projectPropertiesEditor.Dispose();
             _projectPropertiesEditor = null;
         }
     }
     finally
     {
         _closing = false;
     }
 }
Exemplo n.º 2
0
 public void Close()
 {
     try
     {
         _closing = true;
         if (_tabItem != null)
         {
             _tabItem.Close();
             _tabItem = null;
         }
         if (_solutionPropertiesEditor != null)
         {
             _solutionPropertiesEditor.Dispose();
             _solutionPropertiesEditor = null;
         }
     }
     finally
     {
         _closing = false;
     }
 }
 public override void Close()
 {
     try
     {
         _closing = true;
         if (_tabItem != null)
         {
             _tabItem.Close();
             _tabItem = null;
         }
         if (_apkViewer != null)
         {
             _apkViewer.Dispose();
             _apkViewer = null;
         }
     }
     finally
     {
         _closing = false;
     }
 }