From a9a03ace0e162a57dd5350927391603ffcb3efce Mon Sep 17 00:00:00 2001 From: Jiyun Yang Date: Thu, 8 Apr 2021 19:47:49 +0900 Subject: [PATCH] [NUI] Open newly added APIs in Button and Notification Signed-off-by: Jiyun Yang --- src/Tizen.NUI.Components/Controls/Button.cs | 4 ++-- src/Tizen.NUI.Components/Controls/Notification.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tizen.NUI.Components/Controls/Button.cs b/src/Tizen.NUI.Components/Controls/Button.cs index 09c930a..be8e7a5 100755 --- a/src/Tizen.NUI.Components/Controls/Button.cs +++ b/src/Tizen.NUI.Components/Controls/Button.cs @@ -662,7 +662,7 @@ namespace Tizen.NUI.Components /// /// The item (text or icon or both) alignment. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public LinearLayout.Alignment ItemAlignment { get => (LinearLayout.Alignment)GetValue(ItemAlignmentProperty); @@ -674,7 +674,7 @@ namespace Tizen.NUI.Components /// The value is applied when there exist icon and text both. /// The width value is used when the items are arranged horizontally. Otherwise, the height value is used. /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public Size2D ItemSpacing { get => (Size2D)GetValue(ItemSpacingProperty); diff --git a/src/Tizen.NUI.Components/Controls/Notification.cs b/src/Tizen.NUI.Components/Controls/Notification.cs index fd2568e..e9b52a9 100755 --- a/src/Tizen.NUI.Components/Controls/Notification.cs +++ b/src/Tizen.NUI.Components/Controls/Notification.cs @@ -165,7 +165,7 @@ namespace Tizen.NUI.Components /// Notification.MakeToast("Hello World!", Notification.ToastBottom).Post(Notification.ToastShort); /// /// - [EditorBrowsable(EditorBrowsableState.Never)] + /// 9 public static Notification MakeToast(string text, Position gravity) { var textLabel = new TextLabel(text ?? throw new ArgumentNullException(nameof(text))) -- 2.7.4