/// <summary>
        /// Open Debug Output window event handler
        /// </summary>
        /// <param name="sender">Control sending the event</param>
        /// <param name="e">Applicable Routed Event arguments for the event</param>
        private void OpenDebugOutput(object sender, RoutedEventArgs e)
        {
            BAS014 module = this.DataContext as BAS014;

            module.OpenDebugOutput();
        }
 /// <summary>
 /// Initializes a new instance of the BAS014UI class
 /// </summary>
 /// <param name="module">BAS014 module instance for which to construct</param>
 public BAS014UI(BAS014 module)
 {
     this.InitializeComponent();
     this.DataContext = module;
 }