173 lines
6.2 KiB
C#
Raw Normal View History

namespace TestApp
{
partial class Form1
{
/// <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()
{
customComboBox = new Components.CustomComboBox();
buttonAdd = new Button();
buttonClear = new Button();
buttonGet = new Button();
customTextBox = new Components.CustomTextBox();
customListBox = new Components.CustomListBox();
buttonDay = new Button();
buttonAddDay = new Button();
textBoxMood = new TextBox();
label1 = new Label();
SuspendLayout();
//
// customComboBox
//
customComboBox.BorderStyle = BorderStyle.FixedSingle;
customComboBox.Location = new Point(12, 0);
customComboBox.Name = "customComboBox";
customComboBox.SelectedItem = "";
customComboBox.Size = new Size(252, 91);
customComboBox.TabIndex = 0;
customComboBox.ValueChangedEvent += customComboBox_ValueChanged;
//
// buttonAdd
//
buttonAdd.Location = new Point(5, 97);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(94, 29);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "Add";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// buttonClear
//
buttonClear.Location = new Point(105, 97);
buttonClear.Name = "buttonClear";
buttonClear.Size = new Size(94, 29);
buttonClear.TabIndex = 2;
buttonClear.Text = "Clear";
buttonClear.UseVisualStyleBackColor = true;
buttonClear.Click += buttonClear_Click;
//
// buttonGet
//
buttonGet.Location = new Point(205, 97);
buttonGet.Name = "buttonGet";
buttonGet.Size = new Size(94, 29);
buttonGet.TabIndex = 3;
buttonGet.Text = "Get";
buttonGet.UseVisualStyleBackColor = true;
buttonGet.Click += buttonGet_Click;
//
// customTextBox
//
customTextBox.BorderStyle = BorderStyle.FixedSingle;
customTextBox.Location = new Point(12, 144);
customTextBox.Name = "customTextBox";
customTextBox.numberPattern = null;
customTextBox.Size = new Size(258, 88);
customTextBox.TabIndex = 4;
customTextBox.ValueChangedEvent += customTextBox_ValueChanged;
//
// customListBox
//
customListBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
customListBox.Location = new Point(296, 0);
customListBox.Name = "customListBox";
customListBox.SelectedRow = -1;
customListBox.Size = new Size(848, 400);
customListBox.TabIndex = 5;
//
// buttonDay
//
buttonDay.Location = new Point(205, 342);
buttonDay.Name = "buttonDay";
buttonDay.Size = new Size(94, 29);
buttonDay.TabIndex = 6;
buttonDay.Text = "Get day";
buttonDay.UseVisualStyleBackColor = true;
buttonDay.Click += buttonDay_Click;
//
// buttonAddDay
//
buttonAddDay.Location = new Point(205, 371);
buttonAddDay.Name = "buttonAddDay";
buttonAddDay.Size = new Size(94, 29);
buttonAddDay.TabIndex = 7;
buttonAddDay.Text = "Write";
buttonAddDay.UseVisualStyleBackColor = true;
buttonAddDay.Click += buttonAddDay_Click;
//
// textBoxMood
//
textBoxMood.Location = new Point(74, 371);
textBoxMood.Name = "textBoxMood";
textBoxMood.Size = new Size(125, 27);
textBoxMood.TabIndex = 8;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 378);
label1.Name = "label1";
label1.Size = new Size(52, 20);
label1.TabIndex = 9;
label1.Text = "Mood:";
//
// Form1
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1156, 416);
Controls.Add(label1);
Controls.Add(textBoxMood);
Controls.Add(buttonAddDay);
Controls.Add(buttonDay);
Controls.Add(customListBox);
Controls.Add(customTextBox);
Controls.Add(buttonGet);
Controls.Add(buttonClear);
Controls.Add(buttonAdd);
Controls.Add(customComboBox);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Components.CustomComboBox customComboBox;
private Button buttonAdd;
private Button buttonClear;
private Button buttonGet;
private Components.CustomTextBox customTextBox;
private Components.CustomListBox customListBox;
private Button buttonDay;
private Button buttonAddDay;
private TextBox textBoxMood;
private Label label1;
}
}