ConsoleControl.Designer.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. namespace NTERA.Console
  2. {
  3. partial class ConsoleControl
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Component Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.offsetScrollBar = new System.Windows.Forms.VScrollBar();
  29. this.displayPanel = new DoubleBufferedPanel();
  30. this.SuspendLayout();
  31. //
  32. // offsetScrollBar
  33. //
  34. this.offsetScrollBar.Dock = System.Windows.Forms.DockStyle.Right;
  35. this.offsetScrollBar.Location = new System.Drawing.Point(327, 0);
  36. this.offsetScrollBar.Name = "offsetScrollBar";
  37. this.offsetScrollBar.Size = new System.Drawing.Size(17, 246);
  38. this.offsetScrollBar.TabIndex = 0;
  39. this.offsetScrollBar.Value = 100;
  40. this.offsetScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.offsetScrollBar_Scroll);
  41. //
  42. // displayPanel
  43. //
  44. this.displayPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  45. this.displayPanel.Location = new System.Drawing.Point(0, 0);
  46. this.displayPanel.Name = "displayPanel";
  47. this.displayPanel.Size = new System.Drawing.Size(327, 246);
  48. this.displayPanel.TabIndex = 1;
  49. this.displayPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.displayPanel_Paint);
  50. this.displayPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.displayPanel_MouseMove);
  51. this.displayPanel.Resize += new System.EventHandler(this.displayPanel_Resize);
  52. //
  53. // ConsoleControl
  54. //
  55. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  56. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  57. this.BackColor = System.Drawing.Color.Black;
  58. this.Controls.Add(this.displayPanel);
  59. this.Controls.Add(this.offsetScrollBar);
  60. this.DoubleBuffered = true;
  61. this.Name = "ConsoleControl";
  62. this.Size = new System.Drawing.Size(344, 246);
  63. this.ResumeLayout(false);
  64. }
  65. #endregion
  66. private System.Windows.Forms.VScrollBar offsetScrollBar;
  67. private DoubleBufferedPanel displayPanel;
  68. }
  69. }