Files
cms-core-active/CMS_CORE_Application/Form1.Designer.cs
T
Lucio Maranta 8474d98967 New feature:
- Added new form where user can insert a custom port.
- Added custom ip in the demo constructor
Fixed minor problems
2017-11-07 15:38:15 +00:00

63 lines
2.2 KiB
C#

namespace CMS_CORE_Application
{
partial class Form1
{
/// <summary>
/// Variabile di progettazione necessaria.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Pulire le risorse in uso.
/// </summary>
/// <param name="disposing">ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Codice generato da Progettazione Windows Form
/// <summary>
/// Metodo necessario per il supporto della finestra di progettazione. Non modificare
/// il contenuto del metodo con l'editor di codice.
/// </summary>
private void InitializeComponent()
{
this.connectDemo = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// connectDemo
//
this.connectDemo.Location = new System.Drawing.Point(69, 118);
this.connectDemo.Name = "connectDemo";
this.connectDemo.Size = new System.Drawing.Size(154, 23);
this.connectDemo.TabIndex = 0;
this.connectDemo.Text = "Connect to demo";
this.connectDemo.UseVisualStyleBackColor = true;
this.connectDemo.Click += new System.EventHandler(this.connectDemo_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.connectDemo);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button connectDemo;
}
}