summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:59:07 +0000
committerfcolin2007-02-01 09:59:07 +0000
commit98e6cf61604fcacdeb1ff11a66d5eb05a9698070 (patch)
treeac698207b27918df29cc4d9ca2844a116921314e /CSharp/Ivy/IvyPPC
parent48ec3108235fd65b65d0dffd4c527c669ccaf073 (diff)
downloadivy-csharp-98e6cf61604fcacdeb1ff11a66d5eb05a9698070.zip
ivy-csharp-98e6cf61604fcacdeb1ff11a66d5eb05a9698070.tar.gz
ivy-csharp-98e6cf61604fcacdeb1ff11a66d5eb05a9698070.tar.bz2
ivy-csharp-98e6cf61604fcacdeb1ff11a66d5eb05a9698070.tar.xz
Utilisateur : Fcolin Date : 16/01/06 Heure : 13:58 Créé Commentaire: (vss 1)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs130
1 files changed, 130 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs b/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs
new file mode 100644
index 0000000..2709010
--- /dev/null
+++ b/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs
@@ -0,0 +1,130 @@
+namespace IvyBus
+{
+ partial class IvyDomain
+ {
+ /// <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 Component 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();
+ this.label1 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
+ this.appname = new System.Windows.Forms.TextBox();
+ this.ready = new System.Windows.Forms.TextBox();
+ this.domain = new System.Windows.Forms.TextBox();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(3, 8);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(45, 13);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "Ivy Bus:";
+ this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(3, 60);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(41, 13);
+ this.label2.TabIndex = 2;
+ this.label2.Text = "Ready:";
+ this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(3, 34);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(35, 13);
+ this.label3.TabIndex = 4;
+ this.label3.Text = "Name";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // appname
+ //
+ this.appname.Location = new System.Drawing.Point(54, 31);
+ this.appname.Name = "appname";
+ this.appname.Size = new System.Drawing.Size(331, 20);
+ this.appname.TabIndex = 5;
+ this.appname.Text = global::IvyBus.Properties.Settings.Default.AppName;
+ this.toolTip1.SetToolTip(this.appname, "Application name");
+ //
+ // ready
+ //
+ this.ready.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::IvyBus.Properties.Settings.Default, "ReadyMessage", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
+ this.ready.Location = new System.Drawing.Point(54, 57);
+ this.ready.Name = "ready";
+ this.ready.Size = new System.Drawing.Size(331, 20);
+ this.ready.TabIndex = 3;
+ this.ready.Text = global::IvyBus.Properties.Settings.Default.ReadyMessage;
+ this.toolTip1.SetToolTip(this.ready, "ready message");
+ //
+ // domain
+ //
+ this.domain.Location = new System.Drawing.Point(54, 5);
+ this.domain.Name = "domain";
+ this.domain.Size = new System.Drawing.Size(331, 20);
+ this.domain.TabIndex = 1;
+ this.domain.Text = global::IvyBus.Properties.Settings.Default.IvyBus;
+ this.toolTip1.SetToolTip(this.domain, "bus domain");
+ this.domain.Validated += new System.EventHandler(this.textBox1_Validated);
+ this.domain.Validating += new System.ComponentModel.CancelEventHandler(this.textBox1_Validating);
+ //
+ // IvyDomain
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.AutoScroll = true;
+ this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.Controls.Add(this.appname);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.ready);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.domain);
+ this.Controls.Add(this.label1);
+ this.Name = "IvyDomain";
+ this.Size = new System.Drawing.Size(393, 84);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.TextBox domain;
+ private System.Windows.Forms.TextBox ready;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TextBox appname;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.ToolTip toolTip1;
+ }
+}