toast notifications(+) #17

Merged
mshafer1 merged 41 commits from dev/toast_notifications_plus into master 2025-02-11 04:53:56 -05:00
5 changed files with 396 additions and 2 deletions
Showing only changes of commit 9b902f1d38 - Show all commits

View File

@@ -30,7 +30,7 @@
{ {
tbTitle = new System.Windows.Forms.TextBox(); tbTitle = new System.Windows.Forms.TextBox();
button1 = new System.Windows.Forms.Button(); button1 = new System.Windows.Forms.Button();
tbMessage = new System.Windows.Forms.TextBox(); tbMessage = new System.Windows.Forms.RichTextBox();
iconBox = new System.Windows.Forms.PictureBox(); iconBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)iconBox).BeginInit(); ((System.ComponentModel.ISupportInitialize)iconBox).BeginInit();
SuspendLayout(); SuspendLayout();
@@ -65,12 +65,12 @@
tbMessage.BackColor = System.Drawing.SystemColors.ControlDark; tbMessage.BackColor = System.Drawing.SystemColors.ControlDark;
tbMessage.BorderStyle = System.Windows.Forms.BorderStyle.None; 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.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.Location = new System.Drawing.Point(12, 57);
tbMessage.Multiline = true;
tbMessage.Name = "tbMessage"; tbMessage.Name = "tbMessage";
tbMessage.ReadOnly = true; tbMessage.ReadOnly = true;
tbMessage.Size = new System.Drawing.Size(725, 253); tbMessage.Size = new System.Drawing.Size(776, 213);
tbMessage.TabIndex = 2; tbMessage.TabIndex = 2;
tbMessage.Text = "";
// //
// iconBox // iconBox
// //
@@ -85,7 +85,7 @@
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
BackColor = System.Drawing.SystemColors.ControlDark; BackColor = System.Drawing.SystemColors.ControlDark;
ClientSize = new System.Drawing.Size(800, 450); ClientSize = new System.Drawing.Size(800, 289);
Controls.Add(iconBox); Controls.Add(iconBox);
Controls.Add(tbMessage); Controls.Add(tbMessage);
Controls.Add(button1); Controls.Add(button1);
@@ -102,7 +102,7 @@
private System.Windows.Forms.TextBox tbTitle; private System.Windows.Forms.TextBox tbTitle;
private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox tbMessage; private System.Windows.Forms.RichTextBox tbMessage;
private System.Windows.Forms.PictureBox iconBox; private System.Windows.Forms.PictureBox iconBox;
} }
} }