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