LevelcodeLicenseAPP/Forms/FrmLicencaMaquinas.Designer.cs
2026-03-25 16:26:11 -03:00

80 lines
3.5 KiB
C#

namespace Levelcode_licence.Forms
{
partial class FrmLicencaMaquinas
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblLicenca;
private System.Windows.Forms.ComboBox cmbLicencas;
private System.Windows.Forms.DataGridView dgvMaquinas;
private System.Windows.Forms.Button btnDesativar;
private System.Windows.Forms.Label lblInfo;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.lblLicenca = new System.Windows.Forms.Label();
this.cmbLicencas = new System.Windows.Forms.ComboBox();
this.dgvMaquinas = new System.Windows.Forms.DataGridView();
this.btnDesativar = new System.Windows.Forms.Button();
this.lblInfo = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dgvMaquinas)).BeginInit();
this.SuspendLayout();
// lblLicenca
this.lblLicenca.AutoSize = true;
this.lblLicenca.Location = new System.Drawing.Point(15, 15);
this.lblLicenca.Text = "Licença:";
// cmbLicencas
this.cmbLicencas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbLicencas.Location = new System.Drawing.Point(70, 12);
this.cmbLicencas.Width = 350;
this.cmbLicencas.SelectedIndexChanged += new System.EventHandler(this.cmbLicencas_SelectedIndexChanged);
// dgvMaquinas
this.dgvMaquinas.AllowUserToAddRows = false;
this.dgvMaquinas.AllowUserToDeleteRows = false;
this.dgvMaquinas.ReadOnly = true;
this.dgvMaquinas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvMaquinas.MultiSelect = false;
this.dgvMaquinas.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgvMaquinas.Location = new System.Drawing.Point(15, 50);
this.dgvMaquinas.Size = new System.Drawing.Size(760, 330);
// btnDesativar
this.btnDesativar.Location = new System.Drawing.Point(15, 390);
this.btnDesativar.Size = new System.Drawing.Size(160, 35);
this.btnDesativar.Text = "Desativar Máquina";
this.btnDesativar.Click += new System.EventHandler(this.btnDesativar_Click);
// lblInfo
this.lblInfo.AutoSize = true;
this.lblInfo.Location = new System.Drawing.Point(190, 399);
this.lblInfo.Text = "Selecione uma máquina para desativar.";
// FrmLicencaMaquinas
this.ClientSize = new System.Drawing.Size(800, 440);
this.Controls.Add(this.lblLicenca);
this.Controls.Add(this.cmbLicencas);
this.Controls.Add(this.dgvMaquinas);
this.Controls.Add(this.btnDesativar);
this.Controls.Add(this.lblInfo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Máquinas Ativadas por Licença";
((System.ComponentModel.ISupportInitialize)(this.dgvMaquinas)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
}
}