mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
87 lines
3.5 KiB
C#
87 lines
3.5 KiB
C#
namespace Observatory.UI
|
|
{
|
|
partial class NotificationForm
|
|
{
|
|
/// <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.Title = new System.Windows.Forms.Label();
|
|
this.Body = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// Title
|
|
//
|
|
this.Title.Font = new System.Drawing.Font("Segoe UI", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.Title.ForeColor = System.Drawing.Color.OrangeRed;
|
|
this.Title.Location = new System.Drawing.Point(5, 5);
|
|
this.Title.MaximumSize = new System.Drawing.Size(355, 0);
|
|
this.Title.Name = "Title";
|
|
this.Title.Size = new System.Drawing.Size(338, 45);
|
|
this.Title.TabIndex = 0;
|
|
this.Title.Text = "Title";
|
|
//
|
|
// Body
|
|
//
|
|
this.Body.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.Body.AutoSize = true;
|
|
this.Body.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.Body.ForeColor = System.Drawing.Color.OrangeRed;
|
|
this.Body.Location = new System.Drawing.Point(12, 45);
|
|
this.Body.MaximumSize = new System.Drawing.Size(320, 85);
|
|
this.Body.Name = "Body";
|
|
this.Body.Size = new System.Drawing.Size(51, 31);
|
|
this.Body.TabIndex = 1;
|
|
this.Body.Text = "Body";
|
|
this.Body.UseCompatibleTextRendering = true;
|
|
//
|
|
// NotificationForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
|
|
this.ClientSize = new System.Drawing.Size(355, 145);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.Body);
|
|
this.Controls.Add(this.Title);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "NotificationForm";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "NotificationForm";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label Title;
|
|
private Label Body;
|
|
}
|
|
} |