]> O.S.I.I.S - jp/crow.git/commitdiff
* GraphicObject.cs:
authorjpbruyere <jp.bruyere@hotmail.com>
Fri, 11 Sep 2015 08:34:43 +0000 (10:34 +0200)
committerjpbruyere <jp.bruyere@hotmail.com>
Fri, 11 Sep 2015 08:34:43 +0000 (10:34 +0200)
  removed Mouse enter and leave debug message

* ListBox.cs:
  comment

* Interface.cs:
  removed test null of es.Value, I was sure it was working with it,
  but it does not anymore

src/GraphicObjects/GraphicObject.cs
src/GraphicObjects/ListBox.cs
src/Interface.cs

index 03d43da0e61b819a4ede2ca3362484aa77e4fcee..b6ebeb149ce0ceaba0db68ad432a68b92494025a 100644 (file)
@@ -711,12 +711,10 @@ namespace go
                }\r
                public virtual void onMouseEnter(object sender, MouseMoveEventArgs e)\r
                {\r
-                       Debug.WriteLine ("Mouse enter: " + this.Name);\r
                        MouseEnter.Raise (this, e);\r
                }\r
                public virtual void onMouseLeave(object sender, MouseMoveEventArgs e)\r
                {\r
-                       Debug.WriteLine ("Mouse leave: " + this.Name);\r
                        MouseLeave.Raise (this, e);\r
                }\r
                #endregion\r
index ee068ac59843a1c766a3a09bba9dda7ff429e2bc..5811e5ac72fdaea4e02e14fbd6644f062a677266 100644 (file)
@@ -22,7 +22,7 @@ using System;
 using System.Collections;
 using System.Xml.Serialization;
 using System.ComponentModel;
-
+//TODO: implement ItemTemplate node in xml
 namespace go
 {
        [DefaultTemplate("#go.Templates.Listbox.goml")]
index 9b6e3dc8291bccb84806cd29a6da39dee64e3fdf..54cd752a6c59e76a9419201d6c054d7cf1379aa5 100644 (file)
@@ -157,8 +157,8 @@ namespace go
                {
                        foreach (DynAttribute es in GOMLResolver)
                        {
-                               if (string.IsNullOrEmpty(es.Value))
-                                       continue;
+//                             if (string.IsNullOrEmpty(es.Value))
+//                                     continue;
 
                                Type dstType = es.Source.GetType ();
                                MemberInfo miTarget = dstType.GetMember (es.MemberName).FirstOrDefault();