Form1.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 
  2. namespace RegistrationAuthorization
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // button1
  38. //
  39. this.button1.Location = new System.Drawing.Point(96, 91);
  40. this.button1.Name = "button1";
  41. this.button1.Size = new System.Drawing.Size(160, 23);
  42. this.button1.TabIndex = 0;
  43. this.button1.Text = "生成授权申请文件";
  44. this.button1.UseVisualStyleBackColor = true;
  45. this.button1.Click += new System.EventHandler(this.button1_Click);
  46. //
  47. // pictureBox1
  48. //
  49. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  50. this.pictureBox1.Location = new System.Drawing.Point(11, 31);
  51. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  52. this.pictureBox1.Name = "pictureBox1";
  53. this.pictureBox1.Size = new System.Drawing.Size(67, 67);
  54. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  55. this.pictureBox1.TabIndex = 7;
  56. this.pictureBox1.TabStop = false;
  57. //
  58. // label1
  59. //
  60. this.label1.AutoSize = true;
  61. this.label1.Font = new System.Drawing.Font("宋体", 15F);
  62. this.label1.Location = new System.Drawing.Point(92, 20);
  63. this.label1.Name = "label1";
  64. this.label1.Size = new System.Drawing.Size(69, 20);
  65. this.label1.TabIndex = 8;
  66. this.label1.Text = "label1";
  67. //
  68. // label2
  69. //
  70. this.label2.AutoSize = true;
  71. this.label2.Font = new System.Drawing.Font("宋体", 15F);
  72. this.label2.Location = new System.Drawing.Point(92, 59);
  73. this.label2.Name = "label2";
  74. this.label2.Size = new System.Drawing.Size(69, 20);
  75. this.label2.TabIndex = 9;
  76. this.label2.Text = "label2";
  77. //
  78. // Form1
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.ClientSize = new System.Drawing.Size(356, 135);
  83. this.Controls.Add(this.label2);
  84. this.Controls.Add(this.label1);
  85. this.Controls.Add(this.pictureBox1);
  86. this.Controls.Add(this.button1);
  87. this.Name = "Form1";
  88. this.Text = "授权信息";
  89. this.Load += new System.EventHandler(this.Form1_Load);
  90. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  91. this.ResumeLayout(false);
  92. this.PerformLayout();
  93. }
  94. #endregion
  95. private System.Windows.Forms.Button button1;
  96. private System.Windows.Forms.PictureBox pictureBox1;
  97. private System.Windows.Forms.Label label1;
  98. private System.Windows.Forms.Label label2;
  99. }
  100. }