From a27efe3cb3a9a3e0a28788d29c476cd2ecb584fb Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 10:05:29 +0000 Subject: Utilisateur : Fcolin Date : 23/01/06 Heure : 18:09 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: (vss 5) --- CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs | 40 ++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs b/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs index ca061ba..d14b300 100644 --- a/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs +++ b/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs @@ -37,7 +37,8 @@ namespace IvyProbe this.btSend = new System.Windows.Forms.Button(); this.btUnbind = new System.Windows.Forms.Button(); this.btBindSimple = new System.Windows.Forms.Button(); - this.bus = new IvyBus.IvyDomain(); + this.busDomain = new IvyBus.IvyDomain(); + this.bus = new IvyBus.Ivy(); this.SuspendLayout(); // // label1 @@ -129,29 +130,37 @@ namespace IvyProbe this.btBindSimple.Text = "bind simple"; this.btBindSimple.Click += new System.EventHandler(this.ExpressionCB); // + // busDomain + // + this.busDomain.Bus = this.bus; + this.busDomain.Domain = "10.192.36.255:2011"; + this.busDomain.Location = new System.Drawing.Point(0, 0); + this.busDomain.Margin = new System.Windows.Forms.Padding(0); + this.busDomain.Name = "busDomain"; + this.busDomain.Size = new System.Drawing.Size(321, 33); + this.busDomain.TabIndex = 0; + // // bus // - this.bus.AppName = "IvyProbe_C#"; - this.bus.AppReadyMessage = "IvyProbe_C# ready"; - this.bus.AutoScroll = true; - this.bus.Domain = global::IvyProbe.Properties.Settings.Default.IvyBus; - this.bus.Location = new System.Drawing.Point(11, 5); - this.bus.Margin = new System.Windows.Forms.Padding(0); - this.bus.Name = "bus"; - this.bus.Size = new System.Drawing.Size(322, 36); - this.bus.TabIndex = 9; - this.bus.DirectMessageReceived += new IvyBus.Ivy.DirectMessageHandler(this.directMessage); + this.bus.AppName = "IvyProbeC#"; + this.bus.AppPriority = ((ushort)(100)); + this.bus.Culture = new System.Globalization.CultureInfo("en-US"); + this.bus.Debug = false; + this.bus.ReadyMessage = "IvyProbeC# ready"; + this.bus.SentMessageClasses = null; + this.bus.SyncControl = this; + this.bus.dieReceived += new IvyBus.Ivy.DieHandler(this.die); this.bus.BindingAdd += new IvyBus.Ivy.ClientAddBindingHandler(this.bus_addBinding); - this.bus.DieReceived += new IvyBus.Ivy.DieHandler(this.die); this.bus.ClientDisconnected += new IvyBus.Ivy.ClientDisconnectedHandler(this.disconnect); - this.bus.BindingRemove += new IvyBus.Ivy.ClientRemoveBindingHandler(this.bus_removeBinding); this.bus.ClientConnected += new IvyBus.Ivy.ClientConnectedHandler(this.connect); + this.bus.DirectMessageReceived += new IvyBus.Ivy.DirectMessageHandler(this.directMessage); + this.bus.BindingRemove += new IvyBus.Ivy.ClientRemoveBindingHandler(this.bus_removeBinding); // // IvyProbe // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(478, 266); - this.Controls.Add(this.bus); + this.Controls.Add(this.busDomain); this.Controls.Add(this.btBindSimple); this.Controls.Add(this.btUnbind); this.Controls.Add(this.btSend); @@ -179,7 +188,8 @@ namespace IvyProbe private System.Windows.Forms.TextBox ta; private System.Windows.Forms.Button btBindSimple; private System.Windows.Forms.Button btUnbind; - private IvyBus.IvyDomain bus; + private IvyBus.IvyDomain busDomain; + private IvyBus.Ivy bus; } } -- cgit v1.1