OliviaAddIn/OliviaAddIn/FormCampos.Designer.cs

109 lines
4.9 KiB
C#

namespace OliviaAddIn
{
partial class FormCampos
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormCampos));
this.propertyGrid = new System.Windows.Forms.PropertyGrid();
this.button_reset = new System.Windows.Forms.Button();
this.btn_acept = new System.Windows.Forms.Button();
this.button_guardar = new System.Windows.Forms.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// propertyGrid
//
this.propertyGrid.LineColor = System.Drawing.SystemColors.ControlDark;
this.propertyGrid.Location = new System.Drawing.Point(12, 12);
this.propertyGrid.Name = "propertyGrid";
this.propertyGrid.PropertySort = System.Windows.Forms.PropertySort.Categorized;
this.propertyGrid.Size = new System.Drawing.Size(268, 249);
this.propertyGrid.TabIndex = 0;
this.propertyGrid.ToolbarVisible = false;
//
// button_reset
//
this.button_reset.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F);
this.button_reset.Location = new System.Drawing.Point(12, 276);
this.button_reset.Name = "button_reset";
this.button_reset.Size = new System.Drawing.Size(40, 23);
this.button_reset.TabIndex = 1;
this.button_reset.Text = "Reset";
this.button_reset.UseVisualStyleBackColor = true;
this.button_reset.Click += new System.EventHandler(this.button_reset_Click);
//
// btn_acept
//
this.btn_acept.Location = new System.Drawing.Point(205, 276);
this.btn_acept.Name = "btn_acept";
this.btn_acept.Size = new System.Drawing.Size(75, 23);
this.btn_acept.TabIndex = 2;
this.btn_acept.Text = "Aceptar";
this.btn_acept.UseVisualStyleBackColor = true;
this.btn_acept.Click += new System.EventHandler(this.btn_acept_Click);
//
// button_guardar
//
this.button_guardar.Location = new System.Drawing.Point(124, 276);
this.button_guardar.Name = "button_guardar";
this.button_guardar.Size = new System.Drawing.Size(75, 23);
this.button_guardar.TabIndex = 3;
this.button_guardar.Text = "Guardar";
this.toolTip1.SetToolTip(this.button_guardar, "Guardar cambios en los campos y atributos en el archivo de configuración");
this.button_guardar.UseVisualStyleBackColor = true;
this.button_guardar.Click += new System.EventHandler(this.button_guardar_Click);
//
// FormCampos
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 309);
this.Controls.Add(this.button_guardar);
this.Controls.Add(this.btn_acept);
this.Controls.Add(this.button_reset);
this.Controls.Add(this.propertyGrid);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormCampos";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Campos a leer";
this.TopMost = true;
this.Resize += new System.EventHandler(this.FormCampos_Resize);
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.PropertyGrid propertyGrid;
private System.Windows.Forms.Button button_reset;
private System.Windows.Forms.Button btn_acept;
private System.Windows.Forms.Button button_guardar;
private System.Windows.Forms.ToolTip toolTip1;
}
}