116 lines
5.7 KiB
C#
116 lines
5.7 KiB
C#
namespace SanSystem
|
|
{
|
|
partial class frmStrassenList
|
|
{
|
|
/// <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.btn_add = new System.Windows.Forms.Button();
|
|
this.rdbtn_street = new System.Windows.Forms.RadioButton();
|
|
this.rdbtn_ort = new System.Windows.Forms.RadioButton();
|
|
this.trv_street = new System.Windows.Forms.TreeView();
|
|
this.SuspendLayout();
|
|
//
|
|
// btn_add
|
|
//
|
|
this.btn_add.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btn_add.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btn_add.Image = global::SanSystem.Properties.Resources.Add1;
|
|
this.btn_add.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btn_add.Location = new System.Drawing.Point(12, 12);
|
|
this.btn_add.Name = "btn_add";
|
|
this.btn_add.Size = new System.Drawing.Size(262, 82);
|
|
this.btn_add.TabIndex = 1;
|
|
this.btn_add.Text = "Neues \r\nObjekt hinzufügen";
|
|
this.btn_add.UseVisualStyleBackColor = true;
|
|
this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
|
|
//
|
|
// rdbtn_street
|
|
//
|
|
this.rdbtn_street.AutoSize = true;
|
|
this.rdbtn_street.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.rdbtn_street.Location = new System.Drawing.Point(19, 109);
|
|
this.rdbtn_street.Name = "rdbtn_street";
|
|
this.rdbtn_street.Size = new System.Drawing.Size(113, 24);
|
|
this.rdbtn_street.TabIndex = 2;
|
|
this.rdbtn_street.TabStop = true;
|
|
this.rdbtn_street.Text = "Straßenliste";
|
|
this.rdbtn_street.UseVisualStyleBackColor = true;
|
|
this.rdbtn_street.CheckedChanged += new System.EventHandler(this.rdbtn_street_CheckedChanged);
|
|
//
|
|
// rdbtn_ort
|
|
//
|
|
this.rdbtn_ort.AutoSize = true;
|
|
this.rdbtn_ort.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.rdbtn_ort.Location = new System.Drawing.Point(138, 109);
|
|
this.rdbtn_ort.Name = "rdbtn_ort";
|
|
this.rdbtn_ort.Size = new System.Drawing.Size(86, 24);
|
|
this.rdbtn_ort.TabIndex = 3;
|
|
this.rdbtn_ort.TabStop = true;
|
|
this.rdbtn_ort.Text = "Ortsteile";
|
|
this.rdbtn_ort.UseVisualStyleBackColor = true;
|
|
this.rdbtn_ort.CheckedChanged += new System.EventHandler(this.rdbtn_street_CheckedChanged);
|
|
//
|
|
// trv_street
|
|
//
|
|
this.trv_street.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.trv_street.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.trv_street.Location = new System.Drawing.Point(12, 139);
|
|
this.trv_street.Name = "trv_street";
|
|
this.trv_street.Size = new System.Drawing.Size(263, 415);
|
|
this.trv_street.TabIndex = 4;
|
|
this.trv_street.DoubleClick += new System.EventHandler(this.trv_street_DoubleClick);
|
|
//
|
|
// frmStrassenList
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(288, 565);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.trv_street);
|
|
this.Controls.Add(this.rdbtn_ort);
|
|
this.Controls.Add(this.rdbtn_street);
|
|
this.Controls.Add(this.btn_add);
|
|
this.Margin = new System.Windows.Forms.Padding(2);
|
|
this.Name = "frmStrassenList";
|
|
this.Text = "Strassen";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmStrassenList_FormClosing);
|
|
this.Load += new System.EventHandler(this.frmStrassenList_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Button btn_add;
|
|
private System.Windows.Forms.RadioButton rdbtn_street;
|
|
private System.Windows.Forms.RadioButton rdbtn_ort;
|
|
private System.Windows.Forms.TreeView trv_street;
|
|
}
|
|
} |