109 lines
4.9 KiB
C#
109 lines
4.9 KiB
C#
namespace Epi2Exchange
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Erforderliche Designervariable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Verwendete Ressourcen bereinigen.
|
|
/// </summary>
|
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Vom Windows Form-Designer generierter Code
|
|
|
|
/// <summary>
|
|
/// Erforderliche Methode für die Designerunterstützung.
|
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.tb_DataBox = new System.Windows.Forms.TextBox();
|
|
this.btn_getContacts = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.btn_UpdateContact = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// tb_DataBox
|
|
//
|
|
this.tb_DataBox.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.tb_DataBox.Location = new System.Drawing.Point(12, 12);
|
|
this.tb_DataBox.Multiline = true;
|
|
this.tb_DataBox.Name = "tb_DataBox";
|
|
this.tb_DataBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.tb_DataBox.Size = new System.Drawing.Size(776, 395);
|
|
this.tb_DataBox.TabIndex = 0;
|
|
this.tb_DataBox.TextChanged += new System.EventHandler(this.tb_DataBox_TextChanged);
|
|
//
|
|
// btn_getContacts
|
|
//
|
|
this.btn_getContacts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btn_getContacts.Location = new System.Drawing.Point(12, 415);
|
|
this.btn_getContacts.Name = "btn_getContacts";
|
|
this.btn_getContacts.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_getContacts.TabIndex = 1;
|
|
this.btn_getContacts.Text = "getContacts";
|
|
this.btn_getContacts.UseVisualStyleBackColor = true;
|
|
this.btn_getContacts.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.button1.Location = new System.Drawing.Point(93, 415);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(114, 23);
|
|
this.button1.TabIndex = 2;
|
|
this.button1.Text = "checkTestContact";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click_1);
|
|
//
|
|
// btn_UpdateContact
|
|
//
|
|
this.btn_UpdateContact.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btn_UpdateContact.Location = new System.Drawing.Point(213, 415);
|
|
this.btn_UpdateContact.Name = "btn_UpdateContact";
|
|
this.btn_UpdateContact.Size = new System.Drawing.Size(114, 23);
|
|
this.btn_UpdateContact.TabIndex = 3;
|
|
this.btn_UpdateContact.Text = "UpdateContact";
|
|
this.btn_UpdateContact.UseVisualStyleBackColor = true;
|
|
this.btn_UpdateContact.Click += new System.EventHandler(this.btn_UpdateContact_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.btn_UpdateContact);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.btn_getContacts);
|
|
this.Controls.Add(this.tb_DataBox);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tb_DataBox;
|
|
private System.Windows.Forms.Button btn_getContacts;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button btn_UpdateContact;
|
|
}
|
|
}
|
|
|