Add event pass properties in popup outside area 44/116344/2
authorchungryeol lim <cdark.lim@samsung.com>
Fri, 24 Feb 2017 01:04:30 +0000 (10:04 +0900)
committerchungryeol lim <cdark.lim@samsung.com>
Wed, 8 Mar 2017 05:42:12 +0000 (14:42 +0900)
Change-Id: Id450c0e6b591449865950304bf18366e5cbe259b
Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
ElmSharp/ElmSharp/Popup.cs

index 6de02bc..bb17baa 100644 (file)
@@ -85,7 +85,6 @@ namespace ElmSharp
             {
                 Interop.Elementary.elm_popup_orient_set(Handle, (int)value);
             }
-
         }
 
         public WrapType ContentTextWrapType
@@ -112,6 +111,18 @@ namespace ElmSharp
             }
         }
 
+        public bool AllowEvents
+        {
+            get
+            {
+                return Interop.Elementary.elm_popup_allow_events_get(Handle);
+            }
+            set
+            {
+                Interop.Elementary.elm_popup_allow_events_set(Handle, value);
+            }
+        }
+
         public override double AlignmentX
         {
             get
@@ -183,4 +194,4 @@ namespace ElmSharp
             _children.Remove((PopupItem)sender);
         }
     }
-}
+}
\ No newline at end of file