From: sung-su.kim Date: Mon, 3 Jul 2017 01:17:26 +0000 (+0900) Subject: Remove FloatingButton.Click event X-Git-Tag: submit/trunk/20170823.075128~110^2~32^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e788d4dfa0643493cb33dba8c48dd3591dd77dac;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Remove FloatingButton.Click event - FloatingButton does not provide click event Change-Id: Iba5ba335d884378597261b1f93ecb40b27c5baef --- diff --git a/src/ElmSharp/ElmSharp/FloatingButton.cs b/src/ElmSharp/ElmSharp/FloatingButton.cs index 37b157a..5252a1f 100755 --- a/src/ElmSharp/ElmSharp/FloatingButton.cs +++ b/src/ElmSharp/ElmSharp/FloatingButton.cs @@ -23,23 +23,15 @@ namespace ElmSharp /// public class FloatingButton : Layout { - SmartEvent _clicked; /// /// Creates and initializes a new instance of the FloatingButton class. /// /// Created on this parent container.. public FloatingButton(EvasObject parent) : base(parent) { - _clicked = new SmartEvent(this, Handle, "clicked"); - _clicked.On += (s, e) => Clicked?.Invoke(this, EventArgs.Empty); } /// - /// Clicked will be triggered when clicked - /// - public event EventHandler Clicked; - - /// /// Sets or gets floatingbutton mode. /// public FloatingButtonMode Mode @@ -128,6 +120,7 @@ namespace ElmSharp /// Allows all positions /// All, + /// /// Allows LEFT and RIGHT positions only /// @@ -143,18 +136,22 @@ namespace ElmSharp /// Hides in the left, but small handler will show only /// LeftOut, + /// /// Shows all of buttons, but lies on the left /// Left, + /// /// Shows all of buttons, but lies on the center /// Center, + /// /// Shows all of buttons, but lies on the right /// Right, + /// /// Hides in the right, but small handler will show only ///