Interaction logic for MurmurViewControl.xaml
コード例 #1
0
 /// <summary>
 /// Standard constructor for the tool window.
 /// </summary>
 public MurmurViewWindowPane()
     : base(null)
 {
     try
     {
         Control      = new MurmurViewControl();
         base.Content = Control;
     }
     catch (Exception e)
     {
         TraceLog.Exception(new StackFrame().GetMethod().Name, e);
         throw;
     }
 }
コード例 #2
0
 /// <summary>
 /// Standard constructor for the tool window.
 /// </summary>
 public MurmurViewWindowPane()
     : base(null)
 {
     try
     {
         Control = new MurmurViewControl();
         base.Content = Control;
     }
     catch (Exception e)
     {
         TraceLog.Exception(new StackFrame().GetMethod().Name, e);
         throw;
     }
 }