123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- namespace Ogurchenok_11
- {
- partial class Form2
- {
- /// <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.шифрКнигиDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.наименованиеКнигиDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.авторКнигиDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.количествоСтраницDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ценаDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.книгиBindingSource = new System.Windows.Forms.BindingSource(this.components);
- this._Ogurchenok_11DataSet = new Ogurchenok_11._Ogurchenok_11DataSet();
- this.книгиTableAdapter = new Ogurchenok_11._Ogurchenok_11DataSetTableAdapters.КнигиTableAdapter();
- this.button1 = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.книгиBindingSource)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this._Ogurchenok_11DataSet)).BeginInit();
- this.SuspendLayout();
- //
- // dataGridView1
- //
- this.dataGridView1.AutoGenerateColumns = false;
- this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.шифрКнигиDataGridViewTextBoxColumn,
- this.наименованиеКнигиDataGridViewTextBoxColumn,
- this.авторКнигиDataGridViewTextBoxColumn,
- this.количествоСтраницDataGridViewTextBoxColumn,
- this.ценаDataGridViewTextBoxColumn});
- this.dataGridView1.DataSource = this.книгиBindingSource;
- this.dataGridView1.Location = new System.Drawing.Point(108, 80);
- this.dataGridView1.Name = "dataGridView1";
- this.dataGridView1.Size = new System.Drawing.Size(541, 157);
- this.dataGridView1.TabIndex = 0;
- //
- // шифрКнигиDataGridViewTextBoxColumn
- //
- this.шифрКнигиDataGridViewTextBoxColumn.DataPropertyName = "шифр книги";
- this.шифрКнигиDataGridViewTextBoxColumn.HeaderText = "шифр книги";
- this.шифрКнигиDataGridViewTextBoxColumn.Name = "шифрКнигиDataGridViewTextBoxColumn";
- //
- // наименованиеКнигиDataGridViewTextBoxColumn
- //
- this.наименованиеКнигиDataGridViewTextBoxColumn.DataPropertyName = "Наименование книги";
- this.наименованиеКнигиDataGridViewTextBoxColumn.HeaderText = "Наименование книги";
- this.наименованиеКнигиDataGridViewTextBoxColumn.Name = "наименованиеКнигиDataGridViewTextBoxColumn";
- //
- // авторКнигиDataGridViewTextBoxColumn
- //
- this.авторКнигиDataGridViewTextBoxColumn.DataPropertyName = "Автор книги";
- this.авторКнигиDataGridViewTextBoxColumn.HeaderText = "Автор книги";
- this.авторКнигиDataGridViewTextBoxColumn.Name = "авторКнигиDataGridViewTextBoxColumn";
- //
- // количествоСтраницDataGridViewTextBoxColumn
- //
- this.количествоСтраницDataGridViewTextBoxColumn.DataPropertyName = "Количество страниц";
- this.количествоСтраницDataGridViewTextBoxColumn.HeaderText = "Количество страниц";
- this.количествоСтраницDataGridViewTextBoxColumn.Name = "количествоСтраницDataGridViewTextBoxColumn";
- //
- // ценаDataGridViewTextBoxColumn
- //
- this.ценаDataGridViewTextBoxColumn.DataPropertyName = "Цена";
- this.ценаDataGridViewTextBoxColumn.HeaderText = "Цена";
- this.ценаDataGridViewTextBoxColumn.Name = "ценаDataGridViewTextBoxColumn";
- //
- // книгиBindingSource
- //
- this.книгиBindingSource.DataMember = "Книги";
- this.книгиBindingSource.DataSource = this._Ogurchenok_11DataSet;
- //
- // _Ogurchenok_11DataSet
- //
- this._Ogurchenok_11DataSet.DataSetName = "_Ogurchenok_11DataSet";
- this._Ogurchenok_11DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
- //
- // книгиTableAdapter
- //
- this.книгиTableAdapter.ClearBeforeFill = true;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(122, 274);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(120, 38);
- this.button1.TabIndex = 1;
- this.button1.Text = "Линейная таблица";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // Form2
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.dataGridView1);
- this.Name = "Form2";
- this.Text = "Таблица книги";
- this.Load += new System.EventHandler(this.Form2_Load);
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.книгиBindingSource)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this._Ogurchenok_11DataSet)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.DataGridView dataGridView1;
- private _Ogurchenok_11DataSet _Ogurchenok_11DataSet;
- private System.Windows.Forms.BindingSource книгиBindingSource;
- private _Ogurchenok_11DataSetTableAdapters.КнигиTableAdapter книгиTableAdapter;
- private System.Windows.Forms.DataGridViewTextBoxColumn шифрКнигиDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn наименованиеКнигиDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn авторКнигиDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn количествоСтраницDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn ценаDataGridViewTextBoxColumn;
- private System.Windows.Forms.Button button1;
- }
- }
|