PIbd-22-Ismailov_SUBD/BlogDataModels/BlogViewModel/FormCreateMessage.Designer.cs

156 lines
6.5 KiB
C#
Raw Normal View History

2023-09-06 22:02:39 +04:00
namespace Blog
2023-09-06 21:16:28 +04:00
{
partial class FormCreateMessage
{
/// <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.comboBoxCategory = new System.Windows.Forms.ComboBox();
this.comboBoxTopic = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.comboBoxUser = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.textBoxMessage = new System.Windows.Forms.TextBox();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBoxCategory
//
this.comboBoxCategory.FormattingEnabled = true;
this.comboBoxCategory.Location = new System.Drawing.Point(141, 6);
this.comboBoxCategory.Name = "comboBoxCategory";
this.comboBoxCategory.Size = new System.Drawing.Size(147, 23);
this.comboBoxCategory.TabIndex = 0;
this.comboBoxCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxCategory_SelectedIndexChanged);
//
// comboBoxTopic
//
this.comboBoxTopic.FormattingEnabled = true;
this.comboBoxTopic.Location = new System.Drawing.Point(141, 35);
this.comboBoxTopic.Name = "comboBoxTopic";
this.comboBoxTopic.Size = new System.Drawing.Size(147, 23);
this.comboBoxTopic.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(123, 15);
this.label1.TabIndex = 2;
this.label1.Text = "Выберите категорию";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 38);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(90, 15);
this.label2.TabIndex = 3;
this.label2.Text = "Выберите тему";
//
// comboBoxUser
//
this.comboBoxUser.FormattingEnabled = true;
this.comboBoxUser.Location = new System.Drawing.Point(141, 64);
this.comboBoxUser.Name = "comboBoxUser";
this.comboBoxUser.Size = new System.Drawing.Size(147, 23);
this.comboBoxUser.TabIndex = 4;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 67);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(84, 15);
this.label3.TabIndex = 5;
this.label3.Text = "Пользователь";
//
// textBoxMessage
//
this.textBoxMessage.Location = new System.Drawing.Point(12, 93);
this.textBoxMessage.Multiline = true;
this.textBoxMessage.Name = "textBoxMessage";
this.textBoxMessage.Size = new System.Drawing.Size(276, 70);
this.textBoxMessage.TabIndex = 6;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(132, 169);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 7;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(213, 169);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 8;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// FormCreateMessage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(296, 198);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxMessage);
this.Controls.Add(this.label3);
this.Controls.Add(this.comboBoxUser);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboBoxTopic);
this.Controls.Add(this.comboBoxCategory);
this.Name = "FormCreateMessage";
this.Text = "Написать сообщение";
this.Load += new System.EventHandler(this.FormCreateMessage_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ComboBox comboBoxCategory;
private ComboBox comboBoxTopic;
private Label label1;
private Label label2;
private ComboBox comboBoxUser;
private Label label3;
private TextBox textBoxMessage;
private Button buttonSave;
private Button buttonCancel;
}
}