using System.Collections.Generic;
namespace Task8
{
partial class Taskk8
{
///
/// 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();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.studentBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.taskk8BindingSource = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.studentBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.taskk8BindingSource)).BeginInit();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(166, 25);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(617, 26);
this.textBox1.TabIndex = 0;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(764, 133);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 26);
this.textBox2.TabIndex = 1;
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(682, 355);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(100, 26);
this.textBox3.TabIndex = 2;
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 20;
this.listBox1.Location = new System.Drawing.Point(918, 37);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(120, 84);
this.listBox1.TabIndex = 3;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// comboBox1
//
this.comboBox1.AllowDrop = true;
this.comboBox1.DataSource = this.taskk8BindingSource;
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(560, 199);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(121, 28);
this.comboBox1.TabIndex = 4;
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// studentBindingSource
//
this.studentBindingSource.DataSource = typeof(Student);
//
// taskk8BindingSource
//
this.taskk8BindingSource.DataSource = typeof(Task8.Taskk8);
//
// Taskk8
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1257, 563);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Name = "Taskk8";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.studentBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.taskk8BindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
List bla = new List { 1, 2, 3 };
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.BindingSource studentBindingSource;
private System.Windows.Forms.BindingSource taskk8BindingSource;
}
}