common/Ui/GenesisToolBox/frmCalenderSeconds.Designer.cs
2026-04-23 17:50:07 +02:00

195 lines
8.0 KiB
C#

namespace Xylem.Common.Ui.GenesisToolBox
{
partial class frmCalenderSeconds
{
/// <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.dtpDate = new System.Windows.Forms.DateTimePicker();
this.nudHour = new System.Windows.Forms.NumericUpDown();
this.nudMinute = new System.Windows.Forms.NumericUpDown();
this.nudSeconds = new System.Windows.Forms.NumericUpDown();
this.label1 = new System.Windows.Forms.Label();
this.btnCalDate = new System.Windows.Forms.Button();
this.calc = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txtHexInput = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.btnCalFromHEx = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.nudHour)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudMinute)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudSeconds)).BeginInit();
this.SuspendLayout();
//
// dtpDate
//
this.dtpDate.Location = new System.Drawing.Point(12, 135);
this.dtpDate.Name = "dtpDate";
this.dtpDate.Size = new System.Drawing.Size(221, 20);
this.dtpDate.TabIndex = 0;
//
// nudHour
//
this.nudHour.Location = new System.Drawing.Point(239, 135);
this.nudHour.Maximum = new decimal(new int[] {
23,
0,
0,
0});
this.nudHour.Name = "nudHour";
this.nudHour.Size = new System.Drawing.Size(28, 20);
this.nudHour.TabIndex = 1;
//
// nudMinute
//
this.nudMinute.Location = new System.Drawing.Point(273, 135);
this.nudMinute.Maximum = new decimal(new int[] {
59,
0,
0,
0});
this.nudMinute.Name = "nudMinute";
this.nudMinute.Size = new System.Drawing.Size(28, 20);
this.nudMinute.TabIndex = 2;
//
// nudSeconds
//
this.nudSeconds.Location = new System.Drawing.Point(12, 67);
this.nudSeconds.Maximum = new decimal(new int[] {
-1,
0,
0,
0});
this.nudSeconds.Name = "nudSeconds";
this.nudSeconds.Size = new System.Drawing.Size(211, 20);
this.nudSeconds.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 51);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(132, 13);
this.label1.TabIndex = 4;
this.label1.Text = "seconds since 01.01.2000";
//
// btnCalDate
//
this.btnCalDate.Location = new System.Drawing.Point(229, 65);
this.btnCalDate.Name = "btnCalDate";
this.btnCalDate.Size = new System.Drawing.Size(50, 21);
this.btnCalDate.TabIndex = 5;
this.btnCalDate.Text = "calc";
this.btnCalDate.UseVisualStyleBackColor = true;
this.btnCalDate.Click += new System.EventHandler(this.btnCalDate_Click);
//
// calc
//
this.calc.Location = new System.Drawing.Point(307, 133);
this.calc.Name = "calc";
this.calc.Size = new System.Drawing.Size(50, 21);
this.calc.TabIndex = 6;
this.calc.Text = "btnCalcSeconds";
this.calc.UseVisualStyleBackColor = true;
this.calc.Click += new System.EventHandler(this.calc_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 119);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(28, 13);
this.label2.TabIndex = 7;
this.label2.Text = "date";
//
// txtHexInput
//
this.txtHexInput.Location = new System.Drawing.Point(12, 28);
this.txtHexInput.Name = "txtHexInput";
this.txtHexInput.Size = new System.Drawing.Size(160, 20);
this.txtHexInput.TabIndex = 8;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(18, 8);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(56, 13);
this.label3.TabIndex = 9;
this.label3.Text = "HEX Input";
//
// btnCalFromHEx
//
this.btnCalFromHEx.Location = new System.Drawing.Point(188, 26);
this.btnCalFromHEx.Name = "btnCalFromHEx";
this.btnCalFromHEx.Size = new System.Drawing.Size(69, 21);
this.btnCalFromHEx.TabIndex = 10;
this.btnCalFromHEx.Text = "calc";
this.btnCalFromHEx.UseVisualStyleBackColor = true;
this.btnCalFromHEx.Click += new System.EventHandler(this.btnCalFromHEx_Click);
//
// frmCalenderSeconds
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(371, 262);
this.Controls.Add(this.btnCalFromHEx);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtHexInput);
this.Controls.Add(this.label2);
this.Controls.Add(this.calc);
this.Controls.Add(this.btnCalDate);
this.Controls.Add(this.label1);
this.Controls.Add(this.nudSeconds);
this.Controls.Add(this.nudMinute);
this.Controls.Add(this.nudHour);
this.Controls.Add(this.dtpDate);
this.Name = "frmCalenderSeconds";
this.Text = "frmCalenderSeconds";
this.Load += new System.EventHandler(this.frmCalenderSeconds_Load);
((System.ComponentModel.ISupportInitialize)(this.nudHour)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudMinute)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudSeconds)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DateTimePicker dtpDate;
private System.Windows.Forms.NumericUpDown nudHour;
private System.Windows.Forms.NumericUpDown nudMinute;
private System.Windows.Forms.NumericUpDown nudSeconds;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnCalDate;
private System.Windows.Forms.Button calc;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtHexInput;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnCalFromHEx;
}
}