FrmFilePreview.Designer.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. namespace Core.StlMes.Client.Qcm
  2. {
  3. partial class FrmFilePreview
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.panel1.SuspendLayout();
  31. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // panel1
  35. //
  36. this.panel1.Controls.Add(this.pictureBox1);
  37. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  38. this.panel1.Location = new System.Drawing.Point(0, 0);
  39. this.panel1.Name = "panel1";
  40. this.panel1.Size = new System.Drawing.Size(675, 380);
  41. this.panel1.TabIndex = 0;
  42. //
  43. // pictureBox1
  44. //
  45. this.pictureBox1.Location = new System.Drawing.Point(128, 12);
  46. this.pictureBox1.Name = "pictureBox1";
  47. this.pictureBox1.Size = new System.Drawing.Size(258, 225);
  48. this.pictureBox1.TabIndex = 0;
  49. this.pictureBox1.TabStop = false;
  50. //
  51. // FrmFilePreview
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.ClientSize = new System.Drawing.Size(675, 380);
  56. this.Controls.Add(this.panel1);
  57. this.Name = "FrmFilePreview";
  58. this.Text = "文件预览";
  59. this.Load += new System.EventHandler(this.FrmFilePreview_Load);
  60. this.panel1.ResumeLayout(false);
  61. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  62. this.ResumeLayout(false);
  63. }
  64. #endregion
  65. private System.Windows.Forms.Panel panel1;
  66. private System.Windows.Forms.PictureBox pictureBox1;
  67. }
  68. }