summaryrefslogtreecommitdiff
path: root/IvyControl/IvyApplicationBindingControl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IvyControl/IvyApplicationBindingControl.cs')
-rw-r--r--IvyControl/IvyApplicationBindingControl.cs17
1 files changed, 5 insertions, 12 deletions
diff --git a/IvyControl/IvyApplicationBindingControl.cs b/IvyControl/IvyApplicationBindingControl.cs
index c4c236f..5772295 100644
--- a/IvyControl/IvyApplicationBindingControl.cs
+++ b/IvyControl/IvyApplicationBindingControl.cs
@@ -4,6 +4,7 @@ using System.Collections.Specialized;
using System.Text;
using System.ComponentModel;
using System.Threading;
+using System.Collections.ObjectModel;
namespace IvyBus
{
@@ -34,21 +35,12 @@ namespace IvyBus
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
#endif
- public ushort Key
+ public int Key
{
get { return binding.Key; }
set { binding.Key = value; }
}
-#if (!PocketPC)
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
-#endif
- public object[] Args
- {
- get { return binding.Args; }
- set { binding.Args = value; }
- }
#if (!PocketPC)
[Category("Ivy")]
@@ -63,7 +55,7 @@ namespace IvyBus
{
get
{
- return binding.FormatedExpression;
+ return binding.FormattedExpression;
}
}
@@ -83,7 +75,7 @@ namespace IvyBus
[Description("Arguments used when formating the expression")]
#endif
- public List<string> Arguments
+ public Collection<string> Arguments
{
get
{
@@ -116,6 +108,7 @@ namespace IvyBus
{
container.Add(this);
}
+
}
}