Add status footer with logged-in user, improve FOrders filters layout, migrate dialogs to ModernButton, and extend theming with Fluent Win11 palette and auto button styles. Co-authored-by: Cursor <cursoragent@cursor.com>
119 lines
5.9 KiB
C#
119 lines
5.9 KiB
C#
namespace Электронная_Фармация.HelpForms
|
||
{
|
||
partial class HFConsignees
|
||
{
|
||
/// <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.dgvConsignees = new Elfisa.UI.Controls.ModernDataGridView();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.btnConfirmConsignee = new Elfisa.UI.Controls.ModernButton();
|
||
this.btnCloseThis = new Elfisa.UI.Controls.ModernButton();
|
||
((System.ComponentModel.ISupportInitialize)(this.dgvConsignees)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// dgvConsignees
|
||
//
|
||
this.dgvConsignees.AllowUserToAddRows = false;
|
||
this.dgvConsignees.AllowUserToDeleteRows = false;
|
||
this.dgvConsignees.AllowUserToResizeColumns = false;
|
||
this.dgvConsignees.AllowUserToResizeRows = false;
|
||
this.dgvConsignees.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
||
this.dgvConsignees.BackgroundColor = System.Drawing.SystemColors.ButtonFace;
|
||
this.dgvConsignees.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||
this.dgvConsignees.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.dgvConsignees.Location = new System.Drawing.Point(12, 56);
|
||
this.dgvConsignees.MultiSelect = false;
|
||
this.dgvConsignees.Name = "dgvConsignees";
|
||
this.dgvConsignees.ReadOnly = true;
|
||
this.dgvConsignees.RowHeadersVisible = false;
|
||
this.dgvConsignees.RowHeadersWidth = 51;
|
||
this.dgvConsignees.RowTemplate.Height = 24;
|
||
this.dgvConsignees.Size = new System.Drawing.Size(409, 295);
|
||
this.dgvConsignees.TabIndex = 0;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.label1.Location = new System.Drawing.Point(29, 9);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(362, 28);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "Выберите получателя и нажмите \"ОК\"";
|
||
//
|
||
// btnConfirmConsignee
|
||
//
|
||
this.btnConfirmConsignee.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
||
this.btnConfirmConsignee.Font = new System.Drawing.Font("Segoe UI Semibold", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.btnConfirmConsignee.Location = new System.Drawing.Point(336, 361);
|
||
this.btnConfirmConsignee.Name = "btnConfirmConsignee";
|
||
this.btnConfirmConsignee.Size = new System.Drawing.Size(89, 43);
|
||
this.btnConfirmConsignee.TabIndex = 2;
|
||
this.btnConfirmConsignee.Text = "ОК";
|
||
this.btnConfirmConsignee.UseVisualStyleBackColor = true;
|
||
this.btnConfirmConsignee.Click += new System.EventHandler(this.btnConfirmConsignee_Click);
|
||
//
|
||
// btnCloseThis
|
||
//
|
||
this.btnCloseThis.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
||
this.btnCloseThis.Font = new System.Drawing.Font("Segoe UI Semibold", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.btnCloseThis.Location = new System.Drawing.Point(174, 361);
|
||
this.btnCloseThis.Name = "btnCloseThis";
|
||
this.btnCloseThis.Size = new System.Drawing.Size(125, 43);
|
||
this.btnCloseThis.TabIndex = 3;
|
||
this.btnCloseThis.Text = "Отмена";
|
||
this.btnCloseThis.UseVisualStyleBackColor = true;
|
||
this.btnCloseThis.Click += new System.EventHandler(this.btnCloseThis_Click);
|
||
//
|
||
// HFConsignees
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(434, 412);
|
||
this.Controls.Add(this.btnCloseThis);
|
||
this.Controls.Add(this.btnConfirmConsignee);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.dgvConsignees);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
||
this.Name = "HFConsignees";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||
this.Text = "Получатели";
|
||
this.Load += new System.EventHandler(this.HFConsignees_Load);
|
||
((System.ComponentModel.ISupportInitialize)(this.dgvConsignees)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Elfisa.UI.Controls.ModernDataGridView dgvConsignees;
|
||
private System.Windows.Forms.Label label1;
|
||
private Elfisa.UI.Controls.ModernButton btnConfirmConsignee;
|
||
private Elfisa.UI.Controls.ModernButton btnCloseThis;
|
||
}
|
||
} |