123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
-
- namespace WindowsFormsApp1
- {
- partial class Form1
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.dataGridView1 = new System.Windows.Forms.DataGridView();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
- this.button1 = new System.Windows.Forms.Button();
- this.pictureBoxQRCode = new System.Windows.Forms.PictureBox();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQRCode)).BeginInit();
- this.SuspendLayout();
- //
- // dataGridView1
- //
- this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView1.Location = new System.Drawing.Point(166, 124);
- this.dataGridView1.Margin = new System.Windows.Forms.Padding(4);
- this.dataGridView1.Name = "dataGridView1";
- this.dataGridView1.RowHeadersWidth = 51;
- this.dataGridView1.Size = new System.Drawing.Size(309, 176);
- this.dataGridView1.TabIndex = 0;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(608, 43);
- this.button1.Margin = new System.Windows.Forms.Padding(4);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(96, 27);
- this.button1.TabIndex = 1;
- this.button1.Text = "button1";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // pictureBoxQRCode
- //
- this.pictureBoxQRCode.Location = new System.Drawing.Point(525, 87);
- this.pictureBoxQRCode.Name = "pictureBoxQRCode";
- this.pictureBoxQRCode.Size = new System.Drawing.Size(880, 775);
- this.pictureBoxQRCode.TabIndex = 2;
- this.pictureBoxQRCode.TabStop = false;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1417, 874);
- this.Controls.Add(this.pictureBoxQRCode);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.dataGridView1);
- this.Margin = new System.Windows.Forms.Padding(4);
- this.Name = "Form1";
- this.Text = "Form1";
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQRCode)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.DataGridView dataGridView1;
- private System.Windows.Forms.BindingSource bindingSource1;
- private System.ComponentModel.BackgroundWorker backgroundWorker1;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.PictureBox pictureBoxQRCode;
- }
- }
|