LevelcodeLicenseClient/Forms/FrmAtivacao.Designer.cs
2026-03-25 16:34:45 -03:00

124 lines
5.0 KiB
C#

namespace LevelCode.App.Cliente.Forms
{
partial class FrmAtivacao
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label lblTitulo;
private System.Windows.Forms.Label lblLicenca;
private System.Windows.Forms.TextBox txtCaminhoLicenca;
private System.Windows.Forms.Button btnSelecionar;
private System.Windows.Forms.Button btnAtivar;
private System.Windows.Forms.TextBox txtStatus;
private System.Windows.Forms.GroupBox grpStatus;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.lblTitulo = new System.Windows.Forms.Label();
this.lblLicenca = new System.Windows.Forms.Label();
this.txtCaminhoLicenca = new System.Windows.Forms.TextBox();
this.btnSelecionar = new System.Windows.Forms.Button();
this.btnAtivar = new System.Windows.Forms.Button();
this.grpStatus = new System.Windows.Forms.GroupBox();
this.txtStatus = new System.Windows.Forms.TextBox();
this.grpStatus.SuspendLayout();
this.SuspendLayout();
//
// lblTitulo
//
this.lblTitulo.AutoSize = true;
this.lblTitulo.Font = new System.Drawing.Font(
"Segoe UI", 12F, System.Drawing.FontStyle.Bold);
this.lblTitulo.Location = new System.Drawing.Point(12, 9);
this.lblTitulo.Name = "lblTitulo";
this.lblTitulo.Size = new System.Drawing.Size(165, 21);
this.lblTitulo.Text = "Ativação do Sistema";
//
// lblLicenca
//
this.lblLicenca.AutoSize = true;
this.lblLicenca.Location = new System.Drawing.Point(13, 45);
this.lblLicenca.Name = "lblLicenca";
this.lblLicenca.Size = new System.Drawing.Size(109, 13);
this.lblLicenca.Text = "Arquivo de Licença:";
//
// txtCaminhoLicenca
//
this.txtCaminhoLicenca.Location = new System.Drawing.Point(16, 62);
this.txtCaminhoLicenca.Name = "txtCaminhoLicenca";
this.txtCaminhoLicenca.ReadOnly = true;
this.txtCaminhoLicenca.Size = new System.Drawing.Size(310, 20);
//
// btnSelecionar
//
this.btnSelecionar.Location = new System.Drawing.Point(332, 60);
this.btnSelecionar.Name = "btnSelecionar";
this.btnSelecionar.Size = new System.Drawing.Size(90, 23);
this.btnSelecionar.Text = "Selecionar";
this.btnSelecionar.UseVisualStyleBackColor = true;
this.btnSelecionar.Click += new System.EventHandler(this.btnSelecionar_Click);
//
// btnAtivar
//
this.btnAtivar.Location = new System.Drawing.Point(16, 98);
this.btnAtivar.Name = "btnAtivar";
this.btnAtivar.Size = new System.Drawing.Size(140, 35);
this.btnAtivar.Text = "Ativar Sistema";
this.btnAtivar.UseVisualStyleBackColor = true;
this.btnAtivar.Click += new System.EventHandler(this.btnAtivar_Click);
//
// grpStatus
//
this.grpStatus.Controls.Add(this.txtStatus);
this.grpStatus.Location = new System.Drawing.Point(16, 145);
this.grpStatus.Name = "grpStatus";
this.grpStatus.Size = new System.Drawing.Size(406, 140);
this.grpStatus.Text = "Status da Ativação";
//
// txtStatus
//
this.txtStatus.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtStatus.Location = new System.Drawing.Point(3, 16);
this.txtStatus.Multiline = true;
this.txtStatus.ReadOnly = true;
this.txtStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
//
// FrmAtivacao
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(438, 300);
this.Controls.Add(this.grpStatus);
this.Controls.Add(this.btnAtivar);
this.Controls.Add(this.btnSelecionar);
this.Controls.Add(this.txtCaminhoLicenca);
this.Controls.Add(this.lblLicenca);
this.Controls.Add(this.lblTitulo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Ativação do Sistema";
this.grpStatus.ResumeLayout(false);
this.grpStatus.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
}
}