102 lines
5.3 KiB
C#
102 lines
5.3 KiB
C#
namespace Neshina1703
|
||
{
|
||
partial class QRCodeViewerForm
|
||
{
|
||
private System.ComponentModel.IContainer components = null;
|
||
private System.Windows.Forms.PictureBox pictureBoxQR;
|
||
private System.Windows.Forms.Button btnPrint;
|
||
private System.Windows.Forms.Button btnSave;
|
||
private System.Windows.Forms.Button btnClose;
|
||
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
components.Dispose();
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
private void InitializeComponent()
|
||
{
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QRCodeViewerForm));
|
||
this.pictureBoxQR = new System.Windows.Forms.PictureBox();
|
||
this.btnPrint = new System.Windows.Forms.Button();
|
||
this.btnSave = new System.Windows.Forms.Button();
|
||
this.btnClose = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxQR)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// pictureBoxQR
|
||
//
|
||
this.pictureBoxQR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||
this.pictureBoxQR.Location = new System.Drawing.Point(50, 20);
|
||
this.pictureBoxQR.Name = "pictureBoxQR";
|
||
this.pictureBoxQR.Size = new System.Drawing.Size(300, 300);
|
||
this.pictureBoxQR.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||
this.pictureBoxQR.TabIndex = 0;
|
||
this.pictureBoxQR.TabStop = false;
|
||
//
|
||
// btnPrint
|
||
//
|
||
this.btnPrint.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(91)))), ((int)(((byte)(209)))), ((int)(((byte)(45)))));
|
||
this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||
this.btnPrint.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
|
||
this.btnPrint.ForeColor = System.Drawing.Color.Black;
|
||
this.btnPrint.Location = new System.Drawing.Point(50, 340);
|
||
this.btnPrint.Name = "btnPrint";
|
||
this.btnPrint.Size = new System.Drawing.Size(100, 35);
|
||
this.btnPrint.TabIndex = 1;
|
||
this.btnPrint.Text = "Печать";
|
||
this.btnPrint.UseVisualStyleBackColor = false;
|
||
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
|
||
//
|
||
// btnSave
|
||
//
|
||
this.btnSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(176)))), ((int)(((byte)(253)))), ((int)(((byte)(161)))));
|
||
this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||
this.btnSave.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
|
||
this.btnSave.ForeColor = System.Drawing.Color.Black;
|
||
this.btnSave.Location = new System.Drawing.Point(160, 340);
|
||
this.btnSave.Name = "btnSave";
|
||
this.btnSave.Size = new System.Drawing.Size(80, 35);
|
||
this.btnSave.TabIndex = 2;
|
||
this.btnSave.Text = "Сохр.";
|
||
this.btnSave.UseVisualStyleBackColor = false;
|
||
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
||
//
|
||
// btnClose
|
||
//
|
||
this.btnClose.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(176)))), ((int)(((byte)(253)))), ((int)(((byte)(161)))));
|
||
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||
this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
|
||
this.btnClose.ForeColor = System.Drawing.Color.Black;
|
||
this.btnClose.Location = new System.Drawing.Point(250, 340);
|
||
this.btnClose.Name = "btnClose";
|
||
this.btnClose.Size = new System.Drawing.Size(100, 35);
|
||
this.btnClose.TabIndex = 4;
|
||
this.btnClose.Text = "✖ Закрыть";
|
||
this.btnClose.UseVisualStyleBackColor = false;
|
||
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
||
//
|
||
// QRCodeViewerForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
|
||
this.ClientSize = new System.Drawing.Size(400, 450);
|
||
this.Controls.Add(this.pictureBoxQR);
|
||
this.Controls.Add(this.btnPrint);
|
||
this.Controls.Add(this.btnSave);
|
||
this.Controls.Add(this.btnClose);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.MaximizeBox = false;
|
||
this.Name = "QRCodeViewerForm";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||
this.Text = "QR-код товара";
|
||
this.Load += new System.EventHandler(this.QRCodeViewerForm_Load);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBoxQR)).EndInit();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
}
|
||
} |