Files
ntfysh-windows/ntfysh_client/NotificationDialog.Designer.cs
2024-12-20 12:10:12 -06:00

95 lines
3.8 KiB
C#

namespace ntfysh_client
{
partial class NotificationDialog
{
/// <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()
{
tbTitle = new System.Windows.Forms.TextBox();
button1 = new System.Windows.Forms.Button();
tbMessage = new System.Windows.Forms.TextBox();
SuspendLayout();
//
// tbTitle
//
tbTitle.BackColor = System.Drawing.SystemColors.ControlDark;
tbTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
tbTitle.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
tbTitle.Location = new System.Drawing.Point(12, 19);
tbTitle.Name = "tbTitle";
tbTitle.ReadOnly = true;
tbTitle.Size = new System.Drawing.Size(725, 32);
tbTitle.TabIndex = 0;
//
// button1
//
button1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
button1.ForeColor = System.Drawing.SystemColors.ButtonFace;
button1.Location = new System.Drawing.Point(759, 7);
button1.Name = "button1";
button1.Size = new System.Drawing.Size(29, 38);
button1.TabIndex = 1;
button1.Text = "x";
button1.UseVisualStyleBackColor = false;
button1.Click += btnClose_Click;
//
// tbMessage
//
tbMessage.BackColor = System.Drawing.SystemColors.ControlDark;
tbMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
tbMessage.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
tbMessage.Location = new System.Drawing.Point(12, 97);
tbMessage.Multiline = true;
tbMessage.Name = "tbMessage";
tbMessage.ReadOnly = true;
tbMessage.Size = new System.Drawing.Size(725, 253);
tbMessage.TabIndex = 2;
//
// NotificationDialog
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
BackColor = System.Drawing.SystemColors.ControlDark;
ClientSize = new System.Drawing.Size(800, 450);
Controls.Add(tbMessage);
Controls.Add(button1);
Controls.Add(tbTitle);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
Name = "NotificationDialog";
Text = "NotificationDialog";
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbTitle;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox tbMessage;
}
}