277 lines
14 KiB
C#
277 lines
14 KiB
C#
namespace SanSystem
|
|
{
|
|
partial class frmObjekteList
|
|
{
|
|
/// <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.dGObjekte = new System.Windows.Forms.DataGridView();
|
|
this.strasseBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
this.btn_add = new System.Windows.Forms.Button();
|
|
this.lbl_street = new System.Windows.Forms.Label();
|
|
this.lbl_projekt = new System.Windows.Forms.Label();
|
|
this.txt_strasse = new System.Windows.Forms.TextBox();
|
|
this.txt_pro_nr_1 = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.txt_pro_nr_2 = new System.Windows.Forms.TextBox();
|
|
this.txt_pro_nr_3 = new System.Windows.Forms.TextBox();
|
|
this.lbl_ort = new System.Windows.Forms.Label();
|
|
this.txt_ort = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.lbl_projwrong = new System.Windows.Forms.Label();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.lbl_grounddata = new System.Windows.Forms.Label();
|
|
this.gb_error_messages = new System.Windows.Forms.GroupBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.dGObjekte)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.strasseBindingSource)).BeginInit();
|
|
this.gb_error_messages.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dGObjekte
|
|
//
|
|
this.dGObjekte.AllowUserToOrderColumns = true;
|
|
this.dGObjekte.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dGObjekte.Location = new System.Drawing.Point(10, 77);
|
|
this.dGObjekte.Margin = new System.Windows.Forms.Padding(2);
|
|
this.dGObjekte.MultiSelect = false;
|
|
this.dGObjekte.Name = "dGObjekte";
|
|
this.dGObjekte.RowTemplate.Height = 24;
|
|
this.dGObjekte.Size = new System.Drawing.Size(499, 238);
|
|
this.dGObjekte.TabIndex = 0;
|
|
this.dGObjekte.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dGObjekte_CellEndEdit);
|
|
this.dGObjekte.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dGObjekte_DataBindingComplete);
|
|
this.dGObjekte.RowHeaderMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dGObjekte_RowHeaderMouseDoubleClick);
|
|
//
|
|
// btn_add
|
|
//
|
|
this.btn_add.Location = new System.Drawing.Point(533, 214);
|
|
this.btn_add.Margin = new System.Windows.Forms.Padding(2);
|
|
this.btn_add.Name = "btn_add";
|
|
this.btn_add.Size = new System.Drawing.Size(102, 101);
|
|
this.btn_add.TabIndex = 1;
|
|
this.btn_add.Text = "Hinzufügen";
|
|
this.btn_add.UseVisualStyleBackColor = true;
|
|
this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
|
|
//
|
|
// lbl_street
|
|
//
|
|
this.lbl_street.AutoSize = true;
|
|
this.lbl_street.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbl_street.Location = new System.Drawing.Point(6, 9);
|
|
this.lbl_street.Name = "lbl_street";
|
|
this.lbl_street.Size = new System.Drawing.Size(104, 20);
|
|
this.lbl_street.TabIndex = 2;
|
|
this.lbl_street.Text = "Strassename";
|
|
//
|
|
// lbl_projekt
|
|
//
|
|
this.lbl_projekt.AutoSize = true;
|
|
this.lbl_projekt.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbl_projekt.Location = new System.Drawing.Point(6, 49);
|
|
this.lbl_projekt.Name = "lbl_projekt";
|
|
this.lbl_projekt.Size = new System.Drawing.Size(116, 20);
|
|
this.lbl_projekt.TabIndex = 3;
|
|
this.lbl_projekt.Text = "Projektnummer";
|
|
//
|
|
// txt_strasse
|
|
//
|
|
this.txt_strasse.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_strasse.Location = new System.Drawing.Point(157, 6);
|
|
this.txt_strasse.Name = "txt_strasse";
|
|
this.txt_strasse.Size = new System.Drawing.Size(352, 26);
|
|
this.txt_strasse.TabIndex = 4;
|
|
//
|
|
// txt_pro_nr_1
|
|
//
|
|
this.txt_pro_nr_1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_pro_nr_1.Location = new System.Drawing.Point(157, 46);
|
|
this.txt_pro_nr_1.Name = "txt_pro_nr_1";
|
|
this.txt_pro_nr_1.Size = new System.Drawing.Size(100, 26);
|
|
this.txt_pro_nr_1.TabIndex = 5;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label3.Location = new System.Drawing.Point(263, 49);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(14, 20);
|
|
this.label3.TabIndex = 6;
|
|
this.label3.Text = "-";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label4.Location = new System.Drawing.Point(389, 49);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(14, 20);
|
|
this.label4.TabIndex = 7;
|
|
this.label4.Text = "-";
|
|
//
|
|
// txt_pro_nr_2
|
|
//
|
|
this.txt_pro_nr_2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_pro_nr_2.Location = new System.Drawing.Point(283, 46);
|
|
this.txt_pro_nr_2.Name = "txt_pro_nr_2";
|
|
this.txt_pro_nr_2.Size = new System.Drawing.Size(100, 26);
|
|
this.txt_pro_nr_2.TabIndex = 8;
|
|
//
|
|
// txt_pro_nr_3
|
|
//
|
|
this.txt_pro_nr_3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_pro_nr_3.Location = new System.Drawing.Point(409, 46);
|
|
this.txt_pro_nr_3.Name = "txt_pro_nr_3";
|
|
this.txt_pro_nr_3.Size = new System.Drawing.Size(100, 26);
|
|
this.txt_pro_nr_3.TabIndex = 9;
|
|
//
|
|
// lbl_ort
|
|
//
|
|
this.lbl_ort.AutoSize = true;
|
|
this.lbl_ort.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbl_ort.Location = new System.Drawing.Point(549, 9);
|
|
this.lbl_ort.Name = "lbl_ort";
|
|
this.lbl_ort.Size = new System.Drawing.Size(31, 20);
|
|
this.lbl_ort.TabIndex = 10;
|
|
this.lbl_ort.Text = "Ort";
|
|
//
|
|
// txt_ort
|
|
//
|
|
this.txt_ort.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_ort.Location = new System.Drawing.Point(604, 6);
|
|
this.txt_ort.Name = "txt_ort";
|
|
this.txt_ort.Size = new System.Drawing.Size(235, 26);
|
|
this.txt_ort.TabIndex = 11;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(15, 25);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(25, 20);
|
|
this.label1.TabIndex = 12;
|
|
this.label1.Text = " ";
|
|
//
|
|
// lbl_projwrong
|
|
//
|
|
this.lbl_projwrong.AutoSize = true;
|
|
this.lbl_projwrong.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbl_projwrong.Location = new System.Drawing.Point(46, 25);
|
|
this.lbl_projwrong.Name = "lbl_projwrong";
|
|
this.lbl_projwrong.Size = new System.Drawing.Size(51, 20);
|
|
this.lbl_projwrong.TabIndex = 13;
|
|
this.lbl_projwrong.Text = "label2";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label5.Location = new System.Drawing.Point(15, 51);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(25, 20);
|
|
this.label5.TabIndex = 14;
|
|
this.label5.Text = " ";
|
|
//
|
|
// lbl_grounddata
|
|
//
|
|
this.lbl_grounddata.AutoSize = true;
|
|
this.lbl_grounddata.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbl_grounddata.Location = new System.Drawing.Point(46, 51);
|
|
this.lbl_grounddata.Name = "lbl_grounddata";
|
|
this.lbl_grounddata.Size = new System.Drawing.Size(51, 20);
|
|
this.lbl_grounddata.TabIndex = 15;
|
|
this.lbl_grounddata.Text = "label6";
|
|
//
|
|
// gb_error_messages
|
|
//
|
|
this.gb_error_messages.Controls.Add(this.lbl_projwrong);
|
|
this.gb_error_messages.Controls.Add(this.lbl_grounddata);
|
|
this.gb_error_messages.Controls.Add(this.label1);
|
|
this.gb_error_messages.Controls.Add(this.label5);
|
|
this.gb_error_messages.Location = new System.Drawing.Point(514, 77);
|
|
this.gb_error_messages.Name = "gb_error_messages";
|
|
this.gb_error_messages.Size = new System.Drawing.Size(351, 103);
|
|
this.gb_error_messages.TabIndex = 16;
|
|
this.gb_error_messages.TabStop = false;
|
|
this.gb_error_messages.Text = "error_messages";
|
|
//
|
|
// frmObjekteList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(879, 338);
|
|
this.Controls.Add(this.gb_error_messages);
|
|
this.Controls.Add(this.txt_ort);
|
|
this.Controls.Add(this.lbl_ort);
|
|
this.Controls.Add(this.txt_pro_nr_3);
|
|
this.Controls.Add(this.txt_pro_nr_2);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.txt_pro_nr_1);
|
|
this.Controls.Add(this.txt_strasse);
|
|
this.Controls.Add(this.lbl_projekt);
|
|
this.Controls.Add(this.lbl_street);
|
|
this.Controls.Add(this.btn_add);
|
|
this.Controls.Add(this.dGObjekte);
|
|
this.Margin = new System.Windows.Forms.Padding(2);
|
|
this.Name = "frmObjekteList";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "frmObjekteList";
|
|
this.Load += new System.EventHandler(this.frmObjekteList_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dGObjekte)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.strasseBindingSource)).EndInit();
|
|
this.gb_error_messages.ResumeLayout(false);
|
|
this.gb_error_messages.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dGObjekte;
|
|
private System.Windows.Forms.Button btn_add;
|
|
private System.Windows.Forms.BindingSource strasseBindingSource;
|
|
private System.Windows.Forms.Label lbl_street;
|
|
private System.Windows.Forms.Label lbl_projekt;
|
|
private System.Windows.Forms.TextBox txt_strasse;
|
|
private System.Windows.Forms.TextBox txt_pro_nr_1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.TextBox txt_pro_nr_2;
|
|
private System.Windows.Forms.TextBox txt_pro_nr_3;
|
|
private System.Windows.Forms.Label lbl_ort;
|
|
private System.Windows.Forms.TextBox txt_ort;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label lbl_projwrong;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.Label lbl_grounddata;
|
|
private System.Windows.Forms.GroupBox gb_error_messages;
|
|
}
|
|
} |