120 lines
5.5 KiB
C#
120 lines
5.5 KiB
C#
namespace SanSystem
|
|
{
|
|
partial class frmOffsetSet
|
|
{
|
|
/// <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.txt_offset = new System.Windows.Forms.MaskedTextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btn_save = new System.Windows.Forms.Button();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.SuspendLayout();
|
|
//
|
|
// txt_offset
|
|
//
|
|
this.txt_offset.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txt_offset.Location = new System.Drawing.Point(172, 83);
|
|
this.txt_offset.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.txt_offset.Mask = "90:00:00";
|
|
this.txt_offset.Name = "txt_offset";
|
|
this.txt_offset.Size = new System.Drawing.Size(107, 26);
|
|
this.txt_offset.TabIndex = 0;
|
|
this.txt_offset.ValidatingType = typeof(System.DateTime);
|
|
//
|
|
// 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(18, 88);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(71, 20);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "StartZeit";
|
|
//
|
|
// btn_save
|
|
//
|
|
this.btn_save.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.btn_save.Location = new System.Drawing.Point(18, 144);
|
|
this.btn_save.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.btn_save.Name = "btn_save";
|
|
this.btn_save.Size = new System.Drawing.Size(384, 80);
|
|
this.btn_save.TabIndex = 2;
|
|
this.btn_save.Text = "Festlegen";
|
|
this.btn_save.UseVisualStyleBackColor = true;
|
|
this.btn_save.Click += new System.EventHandler(this.Btn_save_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label2.Location = new System.Drawing.Point(18, 38);
|
|
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(57, 20);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Datum";
|
|
//
|
|
// dateTimePicker
|
|
//
|
|
this.dateTimePicker.CustomFormat = "yyyy";
|
|
this.dateTimePicker.Location = new System.Drawing.Point(172, 38);
|
|
this.dateTimePicker.Name = "dateTimePicker";
|
|
this.dateTimePicker.Size = new System.Drawing.Size(275, 26);
|
|
this.dateTimePicker.TabIndex = 4;
|
|
this.dateTimePicker.Value = new System.DateTime(2021, 3, 11, 12, 12, 12, 0);
|
|
//
|
|
// frmOffsetSet
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(493, 249);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.dateTimePicker);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.btn_save);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.txt_offset);
|
|
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.Name = "frmOffsetSet";
|
|
this.Text = "Offsetwert anpassen";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MaskedTextBox txt_offset;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btn_save;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.DateTimePicker dateTimePicker;
|
|
}
|
|
} |