summaryrefslogtreecommitdiff
path: root/CSharp/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:43:13 +0000
committerfcolin2007-02-01 09:43:13 +0000
commitc5f4cb3a4aec71181323f71706bca25ce3cb1adf (patch)
tree673db5b6636034ced85927e524a0f230d5925d88 /CSharp/Ivy
parenteffff66312fd50efeadff469040c88c980c01db0 (diff)
downloadivy-csharp-c5f4cb3a4aec71181323f71706bca25ce3cb1adf.zip
ivy-csharp-c5f4cb3a4aec71181323f71706bca25ce3cb1adf.tar.gz
ivy-csharp-c5f4cb3a4aec71181323f71706bca25ce3cb1adf.tar.bz2
ivy-csharp-c5f4cb3a4aec71181323f71706bca25ce3cb1adf.tar.xz
Utilisateur : Fcolin Date : 20/01/06 Heure : 18:34 Archivé dans $/CSharp/Ivy/Ivy Commentaire: transformation en tant que composent pour faire la gestion des bindings automatique (vss 38)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r--CSharp/Ivy/Ivy/Ivy.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs
index 402a7d1..d17a9e2 100644
--- a/CSharp/Ivy/Ivy/Ivy.cs
+++ b/CSharp/Ivy/Ivy/Ivy.cs
@@ -19,10 +19,14 @@ namespace IvyBus
using System.Text.RegularExpressions;
using System.Text;
using System.Reflection;
+ using System.ComponentModel;
/// <summary> The Main bus Class
/// </summary>
- public class Ivy
+ ///
+ [ToolboxItemFilter("System.Windows.Forms.Form",ToolboxItemFilterType.Allow)]
+ [DesignerCategory("Component")]
+ public class Ivy : System.ComponentModel.Component
{
/* Event handler */
public delegate void DirectMessageHandler (IvyClient app, int id, string arg );