ShowPictureBox.Designer.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. namespace BeltScaleSystem
  2. {
  3. partial class ShowPictureBox
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ShowPictureBox));
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // pictureBox1
  34. //
  35. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  37. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  38. this.pictureBox1.Name = "pictureBox1";
  39. this.pictureBox1.Size = new System.Drawing.Size(414, 354);
  40. this.pictureBox1.TabIndex = 0;
  41. this.pictureBox1.TabStop = false;
  42. this.pictureBox1.DoubleClick += new System.EventHandler(this.pictureBox1_DoubleClick);
  43. //
  44. // ShowPictureBox
  45. //
  46. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  47. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  48. this.ClientSize = new System.Drawing.Size(414, 354);
  49. this.Controls.Add(this.pictureBox1);
  50. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  51. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  52. this.Name = "ShowPictureBox";
  53. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  54. this.TopMost = true;
  55. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  56. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ShowPictureBox_FormClosing);
  57. this.Load += new System.EventHandler(this.ShowPictureBox_Load);
  58. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  59. this.ResumeLayout(false);
  60. }
  61. #endregion
  62. private System.Windows.Forms.PictureBox pictureBox1;
  63. }
  64. }