Files
studenthousedashboard/StudentHouseDashboard/WinForms/ComplaintForm.Designer.cs
2023-06-09 02:57:45 +02:00

237 lines
8.5 KiB
C#

namespace WinForms
{
partial class ComplaintForm
{
/// <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()
{
lblTitle = new Label();
tbTitle = new TextBox();
lblDescription = new Label();
tbDescription = new TextBox();
lblPublishDate = new Label();
btnSave = new Button();
dtpPublishDate = new DateTimePicker();
lblAuthor = new Label();
lblComments = new Label();
listBox1 = new ListBox();
btnViewComment = new Button();
btnEditComment = new Button();
btnDeleteComment = new Button();
btnCreateComment = new Button();
cbStatus = new ComboBox();
cbSeverity = new ComboBox();
SuspendLayout();
//
// lblTitle
//
lblTitle.AutoSize = true;
lblTitle.Location = new Point(12, 9);
lblTitle.Name = "lblTitle";
lblTitle.Size = new Size(32, 15);
lblTitle.TabIndex = 0;
lblTitle.Text = "Title:";
//
// tbTitle
//
tbTitle.Location = new Point(94, 6);
tbTitle.Name = "tbTitle";
tbTitle.Size = new Size(405, 23);
tbTitle.TabIndex = 1;
//
// lblDescription
//
lblDescription.AutoSize = true;
lblDescription.Location = new Point(12, 38);
lblDescription.Name = "lblDescription";
lblDescription.Size = new Size(70, 15);
lblDescription.TabIndex = 2;
lblDescription.Text = "Description:";
//
// tbDescription
//
tbDescription.Location = new Point(94, 35);
tbDescription.Multiline = true;
tbDescription.Name = "tbDescription";
tbDescription.Size = new Size(405, 112);
tbDescription.TabIndex = 3;
//
// lblPublishDate
//
lblPublishDate.AutoSize = true;
lblPublishDate.Location = new Point(12, 159);
lblPublishDate.Name = "lblPublishDate";
lblPublishDate.Size = new Size(76, 15);
lblPublishDate.TabIndex = 4;
lblPublishDate.Text = "Publish Date:";
//
// btnSave
//
btnSave.Location = new Point(424, 180);
btnSave.Name = "btnSave";
btnSave.Size = new Size(75, 23);
btnSave.TabIndex = 6;
btnSave.Text = "Save changes";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// dtpPublishDate
//
dtpPublishDate.Location = new Point(94, 153);
dtpPublishDate.Name = "dtpPublishDate";
dtpPublishDate.Size = new Size(151, 23);
dtpPublishDate.TabIndex = 9;
//
// lblAuthor
//
lblAuthor.AutoSize = true;
lblAuthor.Location = new Point(12, 184);
lblAuthor.Name = "lblAuthor";
lblAuthor.Size = new Size(70, 15);
lblAuthor.TabIndex = 10;
lblAuthor.Text = "Created by: ";
//
// lblComments
//
lblComments.AutoSize = true;
lblComments.Location = new Point(12, 209);
lblComments.Name = "lblComments";
lblComments.Size = new Size(66, 15);
lblComments.TabIndex = 11;
lblComments.Text = "Comments";
//
// listBox1
//
listBox1.FormattingEnabled = true;
listBox1.ItemHeight = 15;
listBox1.Location = new Point(12, 227);
listBox1.Name = "listBox1";
listBox1.Size = new Size(399, 154);
listBox1.TabIndex = 12;
//
// btnViewComment
//
btnViewComment.Location = new Point(424, 271);
btnViewComment.Name = "btnViewComment";
btnViewComment.Size = new Size(75, 23);
btnViewComment.TabIndex = 13;
btnViewComment.Text = "View";
btnViewComment.UseVisualStyleBackColor = true;
btnViewComment.Click += btnViewComment_Click;
//
// btnEditComment
//
btnEditComment.Location = new Point(424, 300);
btnEditComment.Name = "btnEditComment";
btnEditComment.Size = new Size(75, 23);
btnEditComment.TabIndex = 14;
btnEditComment.Text = "Edit";
btnEditComment.UseVisualStyleBackColor = true;
btnEditComment.Click += btnEditComment_Click;
//
// btnDeleteComment
//
btnDeleteComment.Location = new Point(424, 329);
btnDeleteComment.Name = "btnDeleteComment";
btnDeleteComment.Size = new Size(75, 23);
btnDeleteComment.TabIndex = 15;
btnDeleteComment.Text = "Delete";
btnDeleteComment.UseVisualStyleBackColor = true;
btnDeleteComment.Click += btnDeleteComment_Click;
//
// btnCreateComment
//
btnCreateComment.Location = new Point(424, 358);
btnCreateComment.Name = "btnCreateComment";
btnCreateComment.Size = new Size(75, 23);
btnCreateComment.TabIndex = 16;
btnCreateComment.Text = "New";
btnCreateComment.UseVisualStyleBackColor = true;
btnCreateComment.Click += btnCreateComment_Click;
//
// cbStatus
//
cbStatus.FormattingEnabled = true;
cbStatus.Location = new Point(251, 153);
cbStatus.Name = "cbStatus";
cbStatus.Size = new Size(121, 23);
cbStatus.TabIndex = 17;
//
// cbSeverity
//
cbSeverity.FormattingEnabled = true;
cbSeverity.Location = new Point(378, 153);
cbSeverity.Name = "cbSeverity";
cbSeverity.Size = new Size(121, 23);
cbSeverity.TabIndex = 18;
//
// ComplaintForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(511, 400);
Controls.Add(cbSeverity);
Controls.Add(cbStatus);
Controls.Add(btnCreateComment);
Controls.Add(btnDeleteComment);
Controls.Add(btnEditComment);
Controls.Add(btnViewComment);
Controls.Add(listBox1);
Controls.Add(lblComments);
Controls.Add(lblAuthor);
Controls.Add(dtpPublishDate);
Controls.Add(btnSave);
Controls.Add(lblPublishDate);
Controls.Add(tbDescription);
Controls.Add(lblDescription);
Controls.Add(tbTitle);
Controls.Add(lblTitle);
Name = "ComplaintForm";
Text = "Complaint";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblTitle;
private TextBox tbTitle;
private Label lblDescription;
private TextBox tbDescription;
private Label lblPublishDate;
private Button btnSave;
private DateTimePicker dtpPublishDate;
private Label lblAuthor;
private Label lblComments;
private ListBox listBox1;
private Button btnViewComment;
private Button btnEditComment;
private Button btnDeleteComment;
private Button btnCreateComment;
private ComboBox cbStatus;
private ComboBox cbSeverity;
}
}