namespace СУБД_Швейная_фабрика { partial class FormClothFind { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClothFind)); this.panel1 = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); this.dgvCLoth = new System.Windows.Forms.DataGridView(); this.pbxPhoto = new System.Windows.Forms.PictureBox(); this.bsCloth = new System.Windows.Forms.BindingSource(this.components); this.tbxFind = new System.Windows.Forms.TextBox(); this.btnFind = new System.Windows.Forms.Button(); this.btnAll = new System.Windows.Forms.Button(); this.fabrikaLDADataSet = new СУБД_Швейная_фабрика.FabrikaLDADataSet(); this.clothTableAdapter = new СУБД_Швейная_фабрика.FabrikaLDADataSetTableAdapters.ClothTableAdapter(); this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvCLoth)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pbxPhoto)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.bsCloth)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.fabrikaLDADataSet)).BeginInit(); this.SuspendLayout(); // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(225))))); this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.pbxPhoto); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Margin = new System.Windows.Forms.Padding(44, 20, 44, 20); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(576, 81); this.panel1.TabIndex = 3; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.label1.Location = new System.Drawing.Point(14, 23); this.label1.Margin = new System.Windows.Forms.Padding(44, 0, 44, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(209, 37); this.label1.TabIndex = 1; this.label1.Text = "Поиск ткани"; // // dgvCLoth // this.dgvCLoth.AllowUserToAddRows = false; this.dgvCLoth.AllowUserToDeleteRows = false; this.dgvCLoth.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvCLoth.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Column1}); this.dgvCLoth.Location = new System.Drawing.Point(12, 168); this.dgvCLoth.Name = "dgvCLoth"; this.dgvCLoth.ReadOnly = true; this.dgvCLoth.Size = new System.Drawing.Size(549, 310); this.dgvCLoth.TabIndex = 4; // // pbxPhoto // this.pbxPhoto.Dock = System.Windows.Forms.DockStyle.Right; this.pbxPhoto.Image = global::СУБД_Швейная_фабрика.Properties.Resources.fabric_logo; this.pbxPhoto.Location = new System.Drawing.Point(420, 0); this.pbxPhoto.Margin = new System.Windows.Forms.Padding(44, 20, 44, 20); this.pbxPhoto.Name = "pbxPhoto"; this.pbxPhoto.Size = new System.Drawing.Size(156, 81); this.pbxPhoto.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pbxPhoto.TabIndex = 0; this.pbxPhoto.TabStop = false; // // bsCloth // this.bsCloth.DataMember = "Cloth"; this.bsCloth.DataSource = this.fabrikaLDADataSet; // // tbxFind // this.tbxFind.Location = new System.Drawing.Point(12, 87); this.tbxFind.Name = "tbxFind"; this.tbxFind.Size = new System.Drawing.Size(549, 29); this.tbxFind.TabIndex = 5; // // btnFind // this.btnFind.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnFind.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26))))); this.btnFind.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnFind.Location = new System.Drawing.Point(12, 124); this.btnFind.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); this.btnFind.Name = "btnFind"; this.btnFind.Size = new System.Drawing.Size(178, 36); this.btnFind.TabIndex = 12; this.btnFind.Text = "Поиск"; this.btnFind.UseVisualStyleBackColor = false; this.btnFind.Click += new System.EventHandler(this.btnFind_Click); // // btnAll // this.btnAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26))))); this.btnAll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnAll.Location = new System.Drawing.Point(383, 124); this.btnAll.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); this.btnAll.Name = "btnAll"; this.btnAll.Size = new System.Drawing.Size(178, 36); this.btnAll.TabIndex = 13; this.btnAll.Text = "Отобразить всё"; this.btnAll.UseVisualStyleBackColor = false; this.btnAll.Click += new System.EventHandler(this.btnAll_Click); // // fabrikaLDADataSet // this.fabrikaLDADataSet.DataSetName = "FabrikaLDADataSet"; this.fabrikaLDADataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // clothTableAdapter // this.clothTableAdapter.ClearBeforeFill = true; // // Column1 // this.Column1.HeaderText = "Название"; this.Column1.Name = "Column1"; this.Column1.ReadOnly = true; this.Column1.Width = 500; // // FormClothFind // this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 22F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; this.ClientSize = new System.Drawing.Size(576, 490); this.Controls.Add(this.btnAll); this.Controls.Add(this.btnFind); this.Controls.Add(this.tbxFind); this.Controls.Add(this.dgvCLoth); this.Controls.Add(this.panel1); this.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5); this.MaximumSize = new System.Drawing.Size(592, 529); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(592, 529); this.Name = "FormClothFind"; this.Text = "СУБД Швейная фабрика"; this.Load += new System.EventHandler(this.FormClothFind_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgvCLoth)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pbxPhoto)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bsCloth)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.fabrikaLDADataSet)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label label1; private System.Windows.Forms.PictureBox pbxPhoto; private System.Windows.Forms.BindingSource bsCloth; private System.Windows.Forms.DataGridView dgvCLoth; private System.Windows.Forms.TextBox tbxFind; private System.Windows.Forms.Button btnFind; private System.Windows.Forms.Button btnAll; private FabrikaLDADataSet fabrikaLDADataSet; private FabrikaLDADataSetTableAdapters.ClothTableAdapter clothTableAdapter; private System.Windows.Forms.DataGridViewTextBoxColumn Column1; } }