Form1.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. 
  2. namespace WindowsFormsApp1
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
  32. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.pictureBoxQRCode = new System.Windows.Forms.PictureBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  36. ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQRCode)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // dataGridView1
  41. //
  42. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  43. this.dataGridView1.Location = new System.Drawing.Point(166, 124);
  44. this.dataGridView1.Margin = new System.Windows.Forms.Padding(4);
  45. this.dataGridView1.Name = "dataGridView1";
  46. this.dataGridView1.RowHeadersWidth = 51;
  47. this.dataGridView1.Size = new System.Drawing.Size(309, 176);
  48. this.dataGridView1.TabIndex = 0;
  49. //
  50. // button1
  51. //
  52. this.button1.Location = new System.Drawing.Point(608, 43);
  53. this.button1.Margin = new System.Windows.Forms.Padding(4);
  54. this.button1.Name = "button1";
  55. this.button1.Size = new System.Drawing.Size(96, 27);
  56. this.button1.TabIndex = 1;
  57. this.button1.Text = "button1";
  58. this.button1.UseVisualStyleBackColor = true;
  59. this.button1.Click += new System.EventHandler(this.button1_Click);
  60. //
  61. // pictureBoxQRCode
  62. //
  63. this.pictureBoxQRCode.Location = new System.Drawing.Point(525, 87);
  64. this.pictureBoxQRCode.Name = "pictureBoxQRCode";
  65. this.pictureBoxQRCode.Size = new System.Drawing.Size(880, 775);
  66. this.pictureBoxQRCode.TabIndex = 2;
  67. this.pictureBoxQRCode.TabStop = false;
  68. //
  69. // Form1
  70. //
  71. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  72. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  73. this.ClientSize = new System.Drawing.Size(1417, 874);
  74. this.Controls.Add(this.pictureBoxQRCode);
  75. this.Controls.Add(this.button1);
  76. this.Controls.Add(this.dataGridView1);
  77. this.Margin = new System.Windows.Forms.Padding(4);
  78. this.Name = "Form1";
  79. this.Text = "Form1";
  80. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  81. ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
  82. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQRCode)).EndInit();
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. private System.Windows.Forms.DataGridView dataGridView1;
  87. private System.Windows.Forms.BindingSource bindingSource1;
  88. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  89. private System.Windows.Forms.Button button1;
  90. private System.Windows.Forms.PictureBox pictureBoxQRCode;
  91. }
  92. }