HistoryImageDataForm.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. namespace CCDCount.Forms
  2. {
  3. partial class HistoryImageDataForm
  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 Windows Form 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.trackBar1 = new System.Windows.Forms.TrackBar();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.panel2 = new System.Windows.Forms.Panel();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
  34. this.panel1.SuspendLayout();
  35. this.panel2.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // trackBar1
  40. //
  41. this.trackBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  42. | System.Windows.Forms.AnchorStyles.Right)));
  43. this.trackBar1.Location = new System.Drawing.Point(126, 12);
  44. this.trackBar1.Name = "trackBar1";
  45. this.trackBar1.Orientation = System.Windows.Forms.Orientation.Vertical;
  46. this.trackBar1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  47. this.trackBar1.RightToLeftLayout = true;
  48. this.trackBar1.Size = new System.Drawing.Size(56, 426);
  49. this.trackBar1.TabIndex = 0;
  50. this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
  51. this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
  52. //
  53. // panel1
  54. //
  55. this.panel1.Controls.Add(this.button1);
  56. this.panel1.Controls.Add(this.trackBar1);
  57. this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
  58. this.panel1.Location = new System.Drawing.Point(606, 0);
  59. this.panel1.Name = "panel1";
  60. this.panel1.Size = new System.Drawing.Size(194, 450);
  61. this.panel1.TabIndex = 2;
  62. //
  63. // panel2
  64. //
  65. this.panel2.Controls.Add(this.pictureBox1);
  66. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.panel2.Location = new System.Drawing.Point(0, 0);
  68. this.panel2.Name = "panel2";
  69. this.panel2.Size = new System.Drawing.Size(606, 450);
  70. this.panel2.TabIndex = 3;
  71. //
  72. // pictureBox1
  73. //
  74. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  75. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  76. this.pictureBox1.Name = "pictureBox1";
  77. this.pictureBox1.Size = new System.Drawing.Size(606, 450);
  78. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  79. this.pictureBox1.TabIndex = 0;
  80. this.pictureBox1.TabStop = false;
  81. //
  82. // button1
  83. //
  84. this.button1.Location = new System.Drawing.Point(9, 22);
  85. this.button1.Name = "button1";
  86. this.button1.Size = new System.Drawing.Size(111, 47);
  87. this.button1.TabIndex = 1;
  88. this.button1.Text = "保存为CSV";
  89. this.button1.UseVisualStyleBackColor = true;
  90. this.button1.Click += new System.EventHandler(this.button1_Click);
  91. //
  92. // HistoryDataForm
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(800, 450);
  97. this.Controls.Add(this.panel2);
  98. this.Controls.Add(this.panel1);
  99. this.Name = "HistoryDataForm";
  100. this.Text = "HistoryDataForm";
  101. this.Load += new System.EventHandler(this.HistoryDataForm_Load);
  102. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
  103. this.panel1.ResumeLayout(false);
  104. this.panel1.PerformLayout();
  105. this.panel2.ResumeLayout(false);
  106. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  107. this.ResumeLayout(false);
  108. }
  109. #endregion
  110. private System.Windows.Forms.TrackBar trackBar1;
  111. private System.Windows.Forms.Panel panel1;
  112. private System.Windows.Forms.Panel panel2;
  113. private System.Windows.Forms.PictureBox pictureBox1;
  114. private System.Windows.Forms.Button button1;
  115. }
  116. }