Exemplo n.º 1
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OutputForm));
     this.menu   = new System.Windows.Forms.ContextMenu();
     this.Output = new NOutput();
     this.SuspendLayout();
     //
     // Output
     //
     this.Output.BackColor       = System.Drawing.Color.LightSteelBlue;
     this.Output.Current         = "Default";
     this.Output.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.Output.Image           = null;
     this.Output.Label           = "";
     this.Output.Location        = new System.Drawing.Point(0, 0);
     this.Output.Name            = "Output";
     this.Output.ShowBottomPanel = false;
     this.Output.Size            = new System.Drawing.Size(280, 462);
     this.Output.TabIndex        = 1;
     //
     // OutputForm
     //
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AutoScaleBaseSize     = new System.Drawing.Size(5, 13);
     this.ClientSize            = new System.Drawing.Size(280, 462);
     this.Controls.Add(this.Output);
     this.HideOnClose = true;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "OutputForm";
     this.TabText     = "Output";
     this.ResumeLayout(false);
 }
Exemplo n.º 2
0
        /// <summary>
        /// Creates the output form.
        /// </summary>
        private static void CreateOutputForm()
        {
            OutputForm frm = new OutputForm();

            mOutput = frm.Output;
            frm.Show(DockPanel, Properties.Settings.Default.OutputDockState);
            Tabs.Output = frm;
        }