Files
HawkeyeVision/framework/MaterialSkin.Core/Controls/MaterialUpDown.Designer.cs
2025-07-14 12:03:59 +02:00

104 lines
4.9 KiB
C#

using MaterialSkin.Core.Resources;
namespace MaterialSkin.Controls
{
partial class MaterialUpDown
{
/// <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 Component 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.textBox1 = new System.Windows.Forms.TextBox();
this.materialIcon2 = new MaterialSkin.Controls.MaterialIcon();
this.materialIcon1 = new MaterialSkin.Controls.MaterialIcon();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textBox1.Font = new System.Drawing.Font("Roboto", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.textBox1.Location = new System.Drawing.Point(80, 20);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 28);
this.textBox1.TabIndex = 13;
this.textBox1.Text = "0000";
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.textBox1.Click += new System.EventHandler(this.textBox1_Click);
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
this.textBox1.Leave += new System.EventHandler(this.textBox1_Leave);
//
// materialIcon2
//
this.materialIcon2.Clickable = true;
this.materialIcon2.Cursor = System.Windows.Forms.Cursors.Hand;
this.materialIcon2.Image = Resource1.rounded_add_button;
this.materialIcon2.Location = new System.Drawing.Point(200, 0);
this.materialIcon2.Name = "materialIcon2";
this.materialIcon2.Primary = false;
this.materialIcon2.Size = new System.Drawing.Size(64, 64);
this.materialIcon2.TabIndex = 12;
this.materialIcon2.Text = "materialIcon2";
this.materialIcon2.Click += new System.EventHandler(this.materialIcon2_Click);
this.materialIcon2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.materialIcon2_MouseDown);
this.materialIcon2.MouseLeave += new System.EventHandler(this.materialIcon2_MouseLeave);
this.materialIcon2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.materialIcon2_MouseUp);
//
// materialIcon1
//
this.materialIcon1.Clickable = true;
this.materialIcon1.Cursor = System.Windows.Forms.Cursors.Hand;
this.materialIcon1.Image = Resource1.round_delete_button;
this.materialIcon1.Location = new System.Drawing.Point(0, 0);
this.materialIcon1.Name = "materialIcon1";
this.materialIcon1.Primary = false;
this.materialIcon1.Size = new System.Drawing.Size(64, 64);
this.materialIcon1.TabIndex = 11;
this.materialIcon1.Text = "materialIcon1";
this.materialIcon1.Click += new System.EventHandler(this.materialIcon1_Click);
this.materialIcon1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.materialIcon1_MouseDown);
this.materialIcon1.MouseLeave += new System.EventHandler(this.materialIcon1_MouseLeave);
this.materialIcon1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.materialIcon1_MouseUp);
//
// MaterialUpDown
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.Controls.Add(this.textBox1);
this.Controls.Add(this.materialIcon2);
this.Controls.Add(this.materialIcon1);
this.Name = "MaterialUpDown";
this.Size = new System.Drawing.Size(266, 66);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MaterialIcon materialIcon2;
private MaterialIcon materialIcon1;
private System.Windows.Forms.TextBox textBox1;
}
}