agrobot_base/AgroBase/AgroBase/Forms/frmMapa.Designer.cs

260 lines
14 KiB
C#

namespace AgroBase.Forms
{
partial class frmMapa
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMapa));
this.pnlMapa = new System.Windows.Forms.Panel();
this.pnlOrientacaoGps = new System.Windows.Forms.Panel();
this.pnlBotoes = new System.Windows.Forms.Panel();
this.txtDescricao = new System.Windows.Forms.TextBox();
this.lblRuaAtual = new System.Windows.Forms.Label();
this.btnNovaRua = new System.Windows.Forms.Button();
this.btnGerarMapa = new System.Windows.Forms.Button();
this.btnLimpar = new System.Windows.Forms.Button();
this.lblStatusGPS = new System.Windows.Forms.Label();
this.btnRegistrarrPonto = new System.Windows.Forms.Button();
this.lblMapa = new System.Windows.Forms.Label();
this.btnCarregarMapa = new System.Windows.Forms.Button();
this.dgPontos = new System.Windows.Forms.DataGridView();
this.dgRuas = new System.Windows.Forms.DataGridView();
this.pnlMapa.SuspendLayout();
this.pnlBotoes.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgPontos)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dgRuas)).BeginInit();
this.SuspendLayout();
//
// pnlMapa
//
this.pnlMapa.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pnlMapa.Controls.Add(this.pnlOrientacaoGps);
this.pnlMapa.Location = new System.Drawing.Point(700, 12);
this.pnlMapa.Margin = new System.Windows.Forms.Padding(2);
this.pnlMapa.Name = "pnlMapa";
this.pnlMapa.Size = new System.Drawing.Size(767, 462);
this.pnlMapa.TabIndex = 1;
//
// pnlOrientacaoGps
//
this.pnlOrientacaoGps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.pnlOrientacaoGps.BackColor = System.Drawing.Color.White;
this.pnlOrientacaoGps.BackgroundImage = global::AgroBase.Properties.Resources.rosa_dos_ventos;
this.pnlOrientacaoGps.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pnlOrientacaoGps.Location = new System.Drawing.Point(633, 2);
this.pnlOrientacaoGps.Margin = new System.Windows.Forms.Padding(2);
this.pnlOrientacaoGps.Name = "pnlOrientacaoGps";
this.pnlOrientacaoGps.Size = new System.Drawing.Size(132, 132);
this.pnlOrientacaoGps.TabIndex = 13;
this.pnlOrientacaoGps.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlOrientacaoGps_Paint);
//
// pnlBotoes
//
this.pnlBotoes.Controls.Add(this.txtDescricao);
this.pnlBotoes.Controls.Add(this.lblRuaAtual);
this.pnlBotoes.Controls.Add(this.btnNovaRua);
this.pnlBotoes.Controls.Add(this.btnGerarMapa);
this.pnlBotoes.Controls.Add(this.btnLimpar);
this.pnlBotoes.Controls.Add(this.lblStatusGPS);
this.pnlBotoes.Controls.Add(this.btnRegistrarrPonto);
this.pnlBotoes.Controls.Add(this.lblMapa);
this.pnlBotoes.Controls.Add(this.btnCarregarMapa);
this.pnlBotoes.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlBotoes.Location = new System.Drawing.Point(0, 479);
this.pnlBotoes.Margin = new System.Windows.Forms.Padding(2);
this.pnlBotoes.Name = "pnlBotoes";
this.pnlBotoes.Size = new System.Drawing.Size(1476, 46);
this.pnlBotoes.TabIndex = 2;
//
// txtDescricao
//
this.txtDescricao.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.txtDescricao.Location = new System.Drawing.Point(763, 15);
this.txtDescricao.Name = "txtDescricao";
this.txtDescricao.Size = new System.Drawing.Size(100, 20);
this.txtDescricao.TabIndex = 7;
//
// lblRuaAtual
//
this.lblRuaAtual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblRuaAtual.AutoSize = true;
this.lblRuaAtual.Location = new System.Drawing.Point(868, 18);
this.lblRuaAtual.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblRuaAtual.Name = "lblRuaAtual";
this.lblRuaAtual.Size = new System.Drawing.Size(66, 13);
this.lblRuaAtual.TabIndex = 6;
this.lblRuaAtual.Text = "Rua Atual: 1";
//
// btnNovaRua
//
this.btnNovaRua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnNovaRua.Location = new System.Drawing.Point(1058, 11);
this.btnNovaRua.Margin = new System.Windows.Forms.Padding(2);
this.btnNovaRua.Name = "btnNovaRua";
this.btnNovaRua.Size = new System.Drawing.Size(100, 26);
this.btnNovaRua.TabIndex = 5;
this.btnNovaRua.Text = "Nova Rua";
this.btnNovaRua.UseVisualStyleBackColor = true;
this.btnNovaRua.Click += new System.EventHandler(this.btnNovaRua_Click);
//
// btnGerarMapa
//
this.btnGerarMapa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnGerarMapa.Location = new System.Drawing.Point(1266, 11);
this.btnGerarMapa.Margin = new System.Windows.Forms.Padding(2);
this.btnGerarMapa.Name = "btnGerarMapa";
this.btnGerarMapa.Size = new System.Drawing.Size(100, 26);
this.btnGerarMapa.TabIndex = 4;
this.btnGerarMapa.Text = "Gerar Mapa";
this.btnGerarMapa.UseVisualStyleBackColor = true;
this.btnGerarMapa.Click += new System.EventHandler(this.btnGerarMapa_Click);
//
// btnLimpar
//
this.btnLimpar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnLimpar.Location = new System.Drawing.Point(1162, 11);
this.btnLimpar.Margin = new System.Windows.Forms.Padding(2);
this.btnLimpar.Name = "btnLimpar";
this.btnLimpar.Size = new System.Drawing.Size(100, 26);
this.btnLimpar.TabIndex = 3;
this.btnLimpar.Text = "Limpar Pontos";
this.btnLimpar.UseVisualStyleBackColor = true;
this.btnLimpar.Click += new System.EventHandler(this.btnLimpar_Click);
//
// lblStatusGPS
//
this.lblStatusGPS.AutoSize = true;
this.lblStatusGPS.Location = new System.Drawing.Point(260, 17);
this.lblStatusGPS.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblStatusGPS.Name = "lblStatusGPS";
this.lblStatusGPS.Size = new System.Drawing.Size(463, 13);
this.lblStatusGPS.TabIndex = 3;
this.lblStatusGPS.Text = "GPS - Precisão: 9999, Coreção: SemCorrecao, Satélites: 0, Distância: 0,00 m, Orie" +
"ntação: 0,00 º";
//
// btnRegistrarrPonto
//
this.btnRegistrarrPonto.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnRegistrarrPonto.Location = new System.Drawing.Point(954, 11);
this.btnRegistrarrPonto.Margin = new System.Windows.Forms.Padding(2);
this.btnRegistrarrPonto.Name = "btnRegistrarrPonto";
this.btnRegistrarrPonto.Size = new System.Drawing.Size(100, 26);
this.btnRegistrarrPonto.TabIndex = 2;
this.btnRegistrarrPonto.Text = "Registrar Ponto";
this.btnRegistrarrPonto.UseVisualStyleBackColor = true;
this.btnRegistrarrPonto.Click += new System.EventHandler(this.btnRegistrarPontos_Click);
//
// lblMapa
//
this.lblMapa.AutoSize = true;
this.lblMapa.Location = new System.Drawing.Point(9, 17);
this.lblMapa.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblMapa.Name = "lblMapa";
this.lblMapa.Size = new System.Drawing.Size(91, 13);
this.lblMapa.TabIndex = 1;
this.lblMapa.Text = "Mapa carregado: ";
//
// btnCarregarMapa
//
this.btnCarregarMapa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnCarregarMapa.Location = new System.Drawing.Point(1370, 11);
this.btnCarregarMapa.Margin = new System.Windows.Forms.Padding(2);
this.btnCarregarMapa.Name = "btnCarregarMapa";
this.btnCarregarMapa.Size = new System.Drawing.Size(98, 26);
this.btnCarregarMapa.TabIndex = 0;
this.btnCarregarMapa.Text = "Carregar mapa";
this.btnCarregarMapa.UseVisualStyleBackColor = true;
this.btnCarregarMapa.Click += new System.EventHandler(this.btnCarregarMapa_Click);
//
// dgPontos
//
this.dgPontos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.dgPontos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgPontos.Location = new System.Drawing.Point(12, 189);
this.dgPontos.Name = "dgPontos";
this.dgPontos.Size = new System.Drawing.Size(683, 285);
this.dgPontos.TabIndex = 4;
this.dgPontos.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgPontos_UserDeletedRow);
this.dgPontos.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgPontos_UserDeletingRow);
//
// dgRuas
//
this.dgRuas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgRuas.Location = new System.Drawing.Point(12, 12);
this.dgRuas.Name = "dgRuas";
this.dgRuas.Size = new System.Drawing.Size(683, 171);
this.dgRuas.TabIndex = 5;
this.dgRuas.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgRuas_CellDoubleClick);
this.dgRuas.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgRuas_UserDeletedRow);
this.dgRuas.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgRuas_UserDeletingRow);
//
// frmMapa
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1476, 525);
this.Controls.Add(this.dgRuas);
this.Controls.Add(this.dgPontos);
this.Controls.Add(this.pnlBotoes);
this.Controls.Add(this.pnlMapa);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "frmMapa";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Visualizador e Criador de Mapas";
this.Load += new System.EventHandler(this.frmMapa_Load);
this.pnlMapa.ResumeLayout(false);
this.pnlBotoes.ResumeLayout(false);
this.pnlBotoes.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgPontos)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgRuas)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pnlMapa;
private System.Windows.Forms.Panel pnlBotoes;
private System.Windows.Forms.Label lblMapa;
private System.Windows.Forms.Button btnCarregarMapa;
private System.Windows.Forms.Button btnRegistrarrPonto;
private System.Windows.Forms.Button btnLimpar;
private System.Windows.Forms.Panel pnlOrientacaoGps;
private System.Windows.Forms.Label lblStatusGPS;
private System.Windows.Forms.DataGridView dgPontos;
private System.Windows.Forms.Button btnGerarMapa;
private System.Windows.Forms.Button btnNovaRua;
private System.Windows.Forms.Label lblRuaAtual;
private System.Windows.Forms.TextBox txtDescricao;
private System.Windows.Forms.DataGridView dgRuas;
}
}