From: pius.lee Date: Fri, 21 Jul 2017 06:49:52 +0000 (+0900) Subject: Add property for getting children in container X-Git-Tag: submit/trunk/20170823.075128~110^2~13^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2631f0804e2a52439b7f252e6763604f23c2c53d;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Add property for getting children in container Change-Id: I3057604307887c609dd1039d032bb76380c1cb35 --- diff --git a/src/ElmSharp/ElmSharp/Container.cs b/src/ElmSharp/ElmSharp/Container.cs index 5701fe6..6abb589 100755 --- a/src/ElmSharp/ElmSharp/Container.cs +++ b/src/ElmSharp/ElmSharp/Container.cs @@ -57,6 +57,8 @@ namespace ElmSharp } } + protected IEnumerable Children => _children; + protected void AddChild(EvasObject obj) { _children.Add(obj); @@ -78,4 +80,4 @@ namespace ElmSharp _children.Remove((EvasObject)sender); } } -} \ No newline at end of file +}