From 2631f0804e2a52439b7f252e6763604f23c2c53d Mon Sep 17 00:00:00 2001 From: "pius.lee" Date: Fri, 21 Jul 2017 15:49:52 +0900 Subject: [PATCH] Add property for getting children in container Change-Id: I3057604307887c609dd1039d032bb76380c1cb35 --- src/ElmSharp/ElmSharp/Container.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 +} -- 2.7.4