Initial commit
This commit is contained in:
364
Mip/frmEditPoziadavka.Designer.cs
generated
Normal file
364
Mip/frmEditPoziadavka.Designer.cs
generated
Normal file
@@ -0,0 +1,364 @@
|
||||
namespace Mip
|
||||
{
|
||||
partial class frmEditPoziadavka
|
||||
{
|
||||
/// <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.pnlZiadanka = new System.Windows.Forms.Panel();
|
||||
this.btnAddPicture = new System.Windows.Forms.Button();
|
||||
this.btnDeletePicture = new System.Windows.Forms.Button();
|
||||
this.lblPocet = new System.Windows.Forms.Label();
|
||||
this.cbJednotka = new System.Windows.Forms.ComboBox();
|
||||
this.nudMnozstvo = new System.Windows.Forms.NumericUpDown();
|
||||
this.lblJednotka = new System.Windows.Forms.Label();
|
||||
this.lblMnozstvo = new System.Windows.Forms.Label();
|
||||
this.tbPoznamka = new System.Windows.Forms.TextBox();
|
||||
this.btnJednotka = new System.Windows.Forms.Button();
|
||||
this.btnZamietnut = new System.Windows.Forms.Button();
|
||||
this.nudPocet = new System.Windows.Forms.NumericUpDown();
|
||||
this.dtpTermin = new System.Windows.Forms.DateTimePicker();
|
||||
this.lblPoznamka = new System.Windows.Forms.Label();
|
||||
this.lblTermin = new System.Windows.Forms.Label();
|
||||
this.lblFirma = new System.Windows.Forms.Label();
|
||||
this.tbNazov = new System.Windows.Forms.TextBox();
|
||||
this.lblTyp = new System.Windows.Forms.Label();
|
||||
this.tbTyp = new System.Windows.Forms.TextBox();
|
||||
this.lblNazov = new System.Windows.Forms.Label();
|
||||
this.tbFirma = new System.Windows.Forms.TextBox();
|
||||
this.btnOK = new System.Windows.Forms.Button();
|
||||
this.pnlZiadanka.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudMnozstvo)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudPocet)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pnlZiadanka
|
||||
//
|
||||
this.pnlZiadanka.BackColor = System.Drawing.Color.LightBlue;
|
||||
this.pnlZiadanka.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.pnlZiadanka.Controls.Add(this.btnAddPicture);
|
||||
this.pnlZiadanka.Controls.Add(this.btnDeletePicture);
|
||||
this.pnlZiadanka.Controls.Add(this.lblPocet);
|
||||
this.pnlZiadanka.Controls.Add(this.cbJednotka);
|
||||
this.pnlZiadanka.Controls.Add(this.nudMnozstvo);
|
||||
this.pnlZiadanka.Controls.Add(this.lblJednotka);
|
||||
this.pnlZiadanka.Controls.Add(this.lblMnozstvo);
|
||||
this.pnlZiadanka.Controls.Add(this.tbPoznamka);
|
||||
this.pnlZiadanka.Controls.Add(this.btnJednotka);
|
||||
this.pnlZiadanka.Controls.Add(this.btnZamietnut);
|
||||
this.pnlZiadanka.Controls.Add(this.nudPocet);
|
||||
this.pnlZiadanka.Controls.Add(this.dtpTermin);
|
||||
this.pnlZiadanka.Controls.Add(this.lblPoznamka);
|
||||
this.pnlZiadanka.Controls.Add(this.lblTermin);
|
||||
this.pnlZiadanka.Controls.Add(this.lblFirma);
|
||||
this.pnlZiadanka.Controls.Add(this.tbNazov);
|
||||
this.pnlZiadanka.Controls.Add(this.lblTyp);
|
||||
this.pnlZiadanka.Controls.Add(this.tbTyp);
|
||||
this.pnlZiadanka.Controls.Add(this.lblNazov);
|
||||
this.pnlZiadanka.Controls.Add(this.tbFirma);
|
||||
this.pnlZiadanka.Controls.Add(this.btnOK);
|
||||
this.pnlZiadanka.Location = new System.Drawing.Point(0, 0);
|
||||
this.pnlZiadanka.Margin = new System.Windows.Forms.Padding(1);
|
||||
this.pnlZiadanka.Name = "pnlZiadanka";
|
||||
this.pnlZiadanka.Size = new System.Drawing.Size(604, 87);
|
||||
this.pnlZiadanka.TabIndex = 1;
|
||||
//
|
||||
// btnAddPicture
|
||||
//
|
||||
this.btnAddPicture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnAddPicture.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.btnAddPicture.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
||||
this.btnAddPicture.ForeColor = System.Drawing.SystemColors.Control;
|
||||
this.btnAddPicture.Image = global::Mip.Properties.Resources.image_add_icon;
|
||||
this.btnAddPicture.Location = new System.Drawing.Point(517, 0);
|
||||
this.btnAddPicture.Name = "btnAddPicture";
|
||||
this.btnAddPicture.Size = new System.Drawing.Size(43, 43);
|
||||
this.btnAddPicture.TabIndex = 24;
|
||||
this.btnAddPicture.UseVisualStyleBackColor = false;
|
||||
this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
|
||||
//
|
||||
// btnDeletePicture
|
||||
//
|
||||
this.btnDeletePicture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnDeletePicture.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.btnDeletePicture.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
||||
this.btnDeletePicture.Enabled = false;
|
||||
this.btnDeletePicture.Image = global::Mip.Properties.Resources.image_remove_icon;
|
||||
this.btnDeletePicture.Location = new System.Drawing.Point(517, 42);
|
||||
this.btnDeletePicture.Name = "btnDeletePicture";
|
||||
this.btnDeletePicture.Size = new System.Drawing.Size(43, 43);
|
||||
this.btnDeletePicture.TabIndex = 23;
|
||||
this.btnDeletePicture.UseVisualStyleBackColor = false;
|
||||
this.btnDeletePicture.Click += new System.EventHandler(this.btnDeletePicture_Click);
|
||||
//
|
||||
// lblPocet
|
||||
//
|
||||
this.lblPocet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblPocet.Location = new System.Drawing.Point(300, 43);
|
||||
this.lblPocet.Name = "lblPocet";
|
||||
this.lblPocet.Size = new System.Drawing.Size(70, 20);
|
||||
this.lblPocet.TabIndex = 8;
|
||||
this.lblPocet.Text = "Počet kusov";
|
||||
this.lblPocet.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// cbJednotka
|
||||
//
|
||||
this.cbJednotka.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.cbJednotka.FormattingEnabled = true;
|
||||
this.cbJednotka.Location = new System.Drawing.Point(197, 43);
|
||||
this.cbJednotka.Name = "cbJednotka";
|
||||
this.cbJednotka.Size = new System.Drawing.Size(81, 20);
|
||||
this.cbJednotka.TabIndex = 19;
|
||||
this.cbJednotka.Enter += new System.EventHandler(this.cbJednotka_Enter);
|
||||
this.cbJednotka.Leave += new System.EventHandler(this.cbJednotka_Leave);
|
||||
//
|
||||
// nudMnozstvo
|
||||
//
|
||||
this.nudMnozstvo.DecimalPlaces = 2;
|
||||
this.nudMnozstvo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.nudMnozstvo.Increment = new decimal(new int[] {
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
131072});
|
||||
this.nudMnozstvo.Location = new System.Drawing.Point(64, 43);
|
||||
this.nudMnozstvo.Maximum = new decimal(new int[] {
|
||||
10000,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudMnozstvo.Name = "nudMnozstvo";
|
||||
this.nudMnozstvo.Size = new System.Drawing.Size(67, 20);
|
||||
this.nudMnozstvo.TabIndex = 18;
|
||||
this.nudMnozstvo.Enter += new System.EventHandler(this.nudMnozstvo_Enter);
|
||||
this.nudMnozstvo.Leave += new System.EventHandler(this.nudMnozstvo_Leave);
|
||||
//
|
||||
// lblJednotka
|
||||
//
|
||||
this.lblJednotka.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblJednotka.Location = new System.Drawing.Point(132, 43);
|
||||
this.lblJednotka.Name = "lblJednotka";
|
||||
this.lblJednotka.Size = new System.Drawing.Size(64, 20);
|
||||
this.lblJednotka.TabIndex = 22;
|
||||
this.lblJednotka.Text = "Jednotka";
|
||||
this.lblJednotka.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// lblMnozstvo
|
||||
//
|
||||
this.lblMnozstvo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblMnozstvo.Location = new System.Drawing.Point(1, 43);
|
||||
this.lblMnozstvo.Name = "lblMnozstvo";
|
||||
this.lblMnozstvo.Size = new System.Drawing.Size(61, 20);
|
||||
this.lblMnozstvo.TabIndex = 21;
|
||||
this.lblMnozstvo.Text = "Množstvo";
|
||||
this.lblMnozstvo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// tbPoznamka
|
||||
//
|
||||
this.tbPoznamka.Location = new System.Drawing.Point(63, 64);
|
||||
this.tbPoznamka.Name = "tbPoznamka";
|
||||
this.tbPoznamka.Size = new System.Drawing.Size(454, 20);
|
||||
this.tbPoznamka.TabIndex = 10;
|
||||
this.tbPoznamka.Enter += new System.EventHandler(this.tbPoznamka_Enter);
|
||||
this.tbPoznamka.Leave += new System.EventHandler(this.tbPoznamka_Leave);
|
||||
//
|
||||
// btnJednotka
|
||||
//
|
||||
this.btnJednotka.Location = new System.Drawing.Point(278, 42);
|
||||
this.btnJednotka.Name = "btnJednotka";
|
||||
this.btnJednotka.Size = new System.Drawing.Size(22, 22);
|
||||
this.btnJednotka.TabIndex = 20;
|
||||
this.btnJednotka.Text = "+";
|
||||
this.btnJednotka.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// btnZamietnut
|
||||
//
|
||||
this.btnZamietnut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnZamietnut.Image = global::Mip.Properties.Resources.erase_3D;
|
||||
this.btnZamietnut.Location = new System.Drawing.Point(559, 42);
|
||||
this.btnZamietnut.Name = "btnZamietnut";
|
||||
this.btnZamietnut.Size = new System.Drawing.Size(43, 43);
|
||||
this.btnZamietnut.TabIndex = 17;
|
||||
this.btnZamietnut.UseVisualStyleBackColor = true;
|
||||
this.btnZamietnut.Click += new System.EventHandler(this.btnZamietnut_Click);
|
||||
//
|
||||
// nudPocet
|
||||
//
|
||||
this.nudPocet.Location = new System.Drawing.Point(371, 43);
|
||||
this.nudPocet.Maximum = new decimal(new int[] {
|
||||
99999,
|
||||
0,
|
||||
0,
|
||||
0});
|
||||
this.nudPocet.Name = "nudPocet";
|
||||
this.nudPocet.Size = new System.Drawing.Size(146, 20);
|
||||
this.nudPocet.TabIndex = 15;
|
||||
this.nudPocet.Enter += new System.EventHandler(this.nudPocet_Enter);
|
||||
this.nudPocet.Leave += new System.EventHandler(this.nudPocet_Leave);
|
||||
//
|
||||
// dtpTermin
|
||||
//
|
||||
this.dtpTermin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
|
||||
this.dtpTermin.Location = new System.Drawing.Point(371, 22);
|
||||
this.dtpTermin.Name = "dtpTermin";
|
||||
this.dtpTermin.Size = new System.Drawing.Size(146, 20);
|
||||
this.dtpTermin.TabIndex = 14;
|
||||
this.dtpTermin.Enter += new System.EventHandler(this.dtpTermin_Enter);
|
||||
this.dtpTermin.Leave += new System.EventHandler(this.dtpTermin_Leave);
|
||||
//
|
||||
// lblPoznamka
|
||||
//
|
||||
this.lblPoznamka.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblPoznamka.Location = new System.Drawing.Point(1, 64);
|
||||
this.lblPoznamka.Name = "lblPoznamka";
|
||||
this.lblPoznamka.Size = new System.Drawing.Size(61, 20);
|
||||
this.lblPoznamka.TabIndex = 13;
|
||||
this.lblPoznamka.Text = "Poznámka";
|
||||
this.lblPoznamka.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// lblTermin
|
||||
//
|
||||
this.lblTermin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblTermin.Location = new System.Drawing.Point(300, 22);
|
||||
this.lblTermin.Name = "lblTermin";
|
||||
this.lblTermin.Size = new System.Drawing.Size(70, 20);
|
||||
this.lblTermin.TabIndex = 11;
|
||||
this.lblTermin.Text = "Termín";
|
||||
this.lblTermin.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// lblFirma
|
||||
//
|
||||
this.lblFirma.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblFirma.Location = new System.Drawing.Point(1, 22);
|
||||
this.lblFirma.Name = "lblFirma";
|
||||
this.lblFirma.Size = new System.Drawing.Size(61, 20);
|
||||
this.lblFirma.TabIndex = 6;
|
||||
this.lblFirma.Text = "Firma";
|
||||
this.lblFirma.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// tbNazov
|
||||
//
|
||||
this.tbNazov.Location = new System.Drawing.Point(63, 1);
|
||||
this.tbNazov.Name = "tbNazov";
|
||||
this.tbNazov.Size = new System.Drawing.Size(236, 20);
|
||||
this.tbNazov.TabIndex = 5;
|
||||
this.tbNazov.Enter += new System.EventHandler(this.tbNazov_Enter);
|
||||
this.tbNazov.Leave += new System.EventHandler(this.tbNazov_Leave);
|
||||
//
|
||||
// lblTyp
|
||||
//
|
||||
this.lblTyp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblTyp.Location = new System.Drawing.Point(300, 1);
|
||||
this.lblTyp.Name = "lblTyp";
|
||||
this.lblTyp.Size = new System.Drawing.Size(70, 20);
|
||||
this.lblTyp.TabIndex = 4;
|
||||
this.lblTyp.Text = "Typ";
|
||||
this.lblTyp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// tbTyp
|
||||
//
|
||||
this.tbTyp.Location = new System.Drawing.Point(371, 1);
|
||||
this.tbTyp.Name = "tbTyp";
|
||||
this.tbTyp.Size = new System.Drawing.Size(146, 20);
|
||||
this.tbTyp.TabIndex = 3;
|
||||
this.tbTyp.Enter += new System.EventHandler(this.tbTyp_Enter);
|
||||
this.tbTyp.Leave += new System.EventHandler(this.tbTyp_Leave);
|
||||
//
|
||||
// lblNazov
|
||||
//
|
||||
this.lblNazov.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblNazov.Location = new System.Drawing.Point(1, 1);
|
||||
this.lblNazov.Name = "lblNazov";
|
||||
this.lblNazov.Size = new System.Drawing.Size(61, 20);
|
||||
this.lblNazov.TabIndex = 2;
|
||||
this.lblNazov.Text = "Názov";
|
||||
this.lblNazov.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||||
//
|
||||
// tbFirma
|
||||
//
|
||||
this.tbFirma.Location = new System.Drawing.Point(63, 22);
|
||||
this.tbFirma.Name = "tbFirma";
|
||||
this.tbFirma.Size = new System.Drawing.Size(236, 20);
|
||||
this.tbFirma.TabIndex = 1;
|
||||
this.tbFirma.Enter += new System.EventHandler(this.tbFirma_Enter);
|
||||
this.tbFirma.Leave += new System.EventHandler(this.tbFirma_Leave);
|
||||
//
|
||||
// btnOK
|
||||
//
|
||||
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnOK.Image = global::Mip.Properties.Resources.OK_3D;
|
||||
this.btnOK.Location = new System.Drawing.Point(559, 0);
|
||||
this.btnOK.Name = "btnOK";
|
||||
this.btnOK.Size = new System.Drawing.Size(43, 43);
|
||||
this.btnOK.TabIndex = 0;
|
||||
this.btnOK.UseVisualStyleBackColor = true;
|
||||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||||
//
|
||||
// frmEditPoziadavka
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.ClientSize = new System.Drawing.Size(604, 87);
|
||||
this.Controls.Add(this.pnlZiadanka);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
||||
this.Name = "frmEditPoziadavka";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Editovať žiadanku!";
|
||||
this.pnlZiadanka.ResumeLayout(false);
|
||||
this.pnlZiadanka.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudMnozstvo)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudPocet)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Panel pnlZiadanka;
|
||||
private System.Windows.Forms.NumericUpDown nudPocet;
|
||||
private System.Windows.Forms.DateTimePicker dtpTermin;
|
||||
private System.Windows.Forms.Label lblPoznamka;
|
||||
private System.Windows.Forms.Label lblTermin;
|
||||
private System.Windows.Forms.TextBox tbPoznamka;
|
||||
private System.Windows.Forms.Label lblPocet;
|
||||
private System.Windows.Forms.Label lblFirma;
|
||||
private System.Windows.Forms.TextBox tbNazov;
|
||||
private System.Windows.Forms.Label lblTyp;
|
||||
private System.Windows.Forms.TextBox tbTyp;
|
||||
private System.Windows.Forms.Label lblNazov;
|
||||
private System.Windows.Forms.TextBox tbFirma;
|
||||
private System.Windows.Forms.Button btnOK;
|
||||
private System.Windows.Forms.Button btnZamietnut;
|
||||
private System.Windows.Forms.Button btnJednotka;
|
||||
private System.Windows.Forms.ComboBox cbJednotka;
|
||||
private System.Windows.Forms.NumericUpDown nudMnozstvo;
|
||||
private System.Windows.Forms.Button btnAddPicture;
|
||||
private System.Windows.Forms.Button btnDeletePicture;
|
||||
private System.Windows.Forms.Label lblJednotka;
|
||||
private System.Windows.Forms.Label lblMnozstvo;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user