123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- namespace NTERA.Console
- {
- partial class ConsoleControl
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Component Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.offsetScrollBar = new System.Windows.Forms.VScrollBar();
- this.displayPanel = new DoubleBufferedPanel();
- this.SuspendLayout();
- //
- // offsetScrollBar
- //
- this.offsetScrollBar.Dock = System.Windows.Forms.DockStyle.Right;
- this.offsetScrollBar.Location = new System.Drawing.Point(327, 0);
- this.offsetScrollBar.Name = "offsetScrollBar";
- this.offsetScrollBar.Size = new System.Drawing.Size(17, 246);
- this.offsetScrollBar.TabIndex = 0;
- this.offsetScrollBar.Value = 100;
- this.offsetScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.offsetScrollBar_Scroll);
- //
- // displayPanel
- //
- this.displayPanel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.displayPanel.Location = new System.Drawing.Point(0, 0);
- this.displayPanel.Name = "displayPanel";
- this.displayPanel.Size = new System.Drawing.Size(327, 246);
- this.displayPanel.TabIndex = 1;
- this.displayPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.displayPanel_Paint);
- this.displayPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.displayPanel_MouseMove);
- this.displayPanel.Resize += new System.EventHandler(this.displayPanel_Resize);
- //
- // ConsoleControl
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Black;
- this.Controls.Add(this.displayPanel);
- this.Controls.Add(this.offsetScrollBar);
- this.DoubleBuffered = true;
- this.Name = "ConsoleControl";
- this.Size = new System.Drawing.Size(344, 246);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.VScrollBar offsetScrollBar;
- private DoubleBufferedPanel displayPanel;
- }
- }
|