WinForms app with Elfisa.UI, API integration, order workflow, invoices/refusals sync, and production-ready fixes from the desktop roadmap. Co-authored-by: Cursor <cursoragent@cursor.com>
49 lines
2.0 KiB
C#
49 lines
2.0 KiB
C#
namespace Электронная_Фармация.HelpForms
|
||
{
|
||
partial class NotificationForm
|
||
{
|
||
private System.ComponentModel.IContainer components = null;
|
||
private System.Windows.Forms.Label lblMessage;
|
||
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
private void InitializeComponent()
|
||
{
|
||
this.lblMessage = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// lblMessage
|
||
//
|
||
this.lblMessage.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.lblMessage.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.lblMessage.Location = new System.Drawing.Point(0, 0);
|
||
this.lblMessage.Name = "lblMessage";
|
||
this.lblMessage.Padding = new System.Windows.Forms.Padding(17, 16, 17, 16);
|
||
this.lblMessage.Size = new System.Drawing.Size(600, 60);
|
||
this.lblMessage.TabIndex = 0;
|
||
this.lblMessage.Text = "Message Text";
|
||
this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||
this.lblMessage.Click += new System.EventHandler(this.NotificationForm_Click);
|
||
//
|
||
// NotificationForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(600, 60);
|
||
this.Controls.Add(this.lblMessage);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
||
this.Name = "NotificationForm";
|
||
this.TopMost = true;
|
||
this.Click += new System.EventHandler(this.NotificationForm_Click);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
}
|
||
} |