76 lines
2.8 KiB
C#
76 lines
2.8 KiB
C#
|
|
namespace AgroMonitor
|
|||
|
|
{
|
|||
|
|
partial class frmInicial
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Variável de designer necessária.
|
|||
|
|
/// </summary>
|
|||
|
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Limpar os recursos que estão sendo usados.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="disposing">true se for necessário descartar os recursos gerenciados; caso contrário, false.</param>
|
|||
|
|
protected override void Dispose(bool disposing)
|
|||
|
|
{
|
|||
|
|
if (disposing && (components != null))
|
|||
|
|
{
|
|||
|
|
components.Dispose();
|
|||
|
|
}
|
|||
|
|
base.Dispose(disposing);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#region Código gerado pelo Windows Form Designer
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Método necessário para suporte ao Designer - não modifique
|
|||
|
|
/// o conteúdo deste método com o editor de código.
|
|||
|
|
/// </summary>
|
|||
|
|
private void InitializeComponent()
|
|||
|
|
{
|
|||
|
|
this.btnAbrir = new System.Windows.Forms.Button();
|
|||
|
|
this.btnComunicacao = new System.Windows.Forms.Button();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// btnAbrir
|
|||
|
|
//
|
|||
|
|
this.btnAbrir.Location = new System.Drawing.Point(556, 370);
|
|||
|
|
this.btnAbrir.Name = "btnAbrir";
|
|||
|
|
this.btnAbrir.Size = new System.Drawing.Size(232, 68);
|
|||
|
|
this.btnAbrir.TabIndex = 0;
|
|||
|
|
this.btnAbrir.Text = "Abrir Monitoramento";
|
|||
|
|
this.btnAbrir.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnAbrir.Click += new System.EventHandler(this.btnAbrir_Click);
|
|||
|
|
//
|
|||
|
|
// btnComunicacao
|
|||
|
|
//
|
|||
|
|
this.btnComunicacao.Location = new System.Drawing.Point(318, 370);
|
|||
|
|
this.btnComunicacao.Name = "btnComunicacao";
|
|||
|
|
this.btnComunicacao.Size = new System.Drawing.Size(232, 68);
|
|||
|
|
this.btnComunicacao.TabIndex = 1;
|
|||
|
|
this.btnComunicacao.Text = "Configurar Comunicação";
|
|||
|
|
this.btnComunicacao.UseVisualStyleBackColor = true;
|
|||
|
|
this.btnComunicacao.Click += new System.EventHandler(this.btnComunicacao_Click);
|
|||
|
|
//
|
|||
|
|
// frmInicial
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|||
|
|
this.Controls.Add(this.btnComunicacao);
|
|||
|
|
this.Controls.Add(this.btnAbrir);
|
|||
|
|
this.Name = "frmInicial";
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "Agro Monitoramento";
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Button btnAbrir;
|
|||
|
|
private System.Windows.Forms.Button btnComunicacao;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|