Interaction logic for ExplorerViewControl.xaml
 /// <summary>
 /// Standard constructor for the tool window.
 /// </summary>
 public ExplorerViewWindowPane()
     : base(null)
 {
     try
     {
         BitmapResourceID = 101;
         BitmapIndex      = 0;
         _control         = new ExplorerViewControl();
         base.Content     = _control;
     }
     catch (Exception e)
     {
         TraceLog.Exception(new StackFrame().GetMethod().Name, e);
         throw;
     }
 }
 /// <summary>
 /// Standard constructor for the tool window.
 /// </summary>
 public ExplorerViewWindowPane()
     : base(null)
 {
     try
     {
         BitmapResourceID = 101;
         BitmapIndex = 0;
         _control = new ExplorerViewControl();
         base.Content = _control;
     }
     catch (Exception e)
     {
         TraceLog.Exception(new StackFrame().GetMethod().Name, e);
         throw;
     }
 }