SUBD/CarRent/FormAddReview.Designer.cs

127 lines
4.2 KiB
C#

namespace CarRent
{
partial class FormAddReview
{
/// <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.label1 = new System.Windows.Forms.Label();
this.textBoxReviewText = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.numericUpDown = new System.Windows.Forms.NumericUpDown();
this.buttonAddReview = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit();
this.SuspendLayout();
//
// 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(83, 15);
this.label1.TabIndex = 0;
this.label1.Text = "Новый отзыв:";
//
// textBoxReviewText
//
this.textBoxReviewText.Location = new System.Drawing.Point(12, 27);
this.textBoxReviewText.Multiline = true;
this.textBoxReviewText.Name = "textBoxReviewText";
this.textBoxReviewText.Size = new System.Drawing.Size(157, 116);
this.textBoxReviewText.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 146);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(76, 15);
this.label2.TabIndex = 2;
this.label2.Text = "Оценка(1-5):";
//
// numericUpDown
//
this.numericUpDown.Location = new System.Drawing.Point(12, 164);
this.numericUpDown.Name = "numericUpDown";
this.numericUpDown.Size = new System.Drawing.Size(157, 23);
this.numericUpDown.TabIndex = 3;
this.numericUpDown.Value = new decimal(new int[] {
5,
0,
0,
0});
//
// buttonAddReview
//
this.buttonAddReview.Location = new System.Drawing.Point(12, 193);
this.buttonAddReview.Name = "buttonAddReview";
this.buttonAddReview.Size = new System.Drawing.Size(75, 23);
this.buttonAddReview.TabIndex = 4;
this.buttonAddReview.Text = "Добавить";
this.buttonAddReview.UseVisualStyleBackColor = true;
this.buttonAddReview.Click += new System.EventHandler(this.buttonAddReview_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(94, 193);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 5;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// FormAddReview
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(179, 226);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonAddReview);
this.Controls.Add(this.numericUpDown);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBoxReviewText);
this.Controls.Add(this.label1);
this.Name = "FormAddReview";
this.Text = "Новый отзыв";
this.Load += new System.EventHandler(this.FormAddReview_Load);
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label label1;
private TextBox textBoxReviewText;
private Label label2;
private NumericUpDown numericUpDown;
private Button buttonAddReview;
private Button buttonCancel;
}
}