[NUI] Set Notification Window transparent (#3125)
authorJaehyun Cho <jaehyun0cho@gmail.com>
Mon, 31 May 2021 06:04:29 +0000 (15:04 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 1 Jun 2021 08:03:31 +0000 (17:03 +0900)
Notification creates its own Window.
Not to cover the existing view behind Notification Window, Notification
Window's BackgroundColor is set to be transparent.

Co-authored-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
src/Tizen.NUI.Components/Controls/Notification.cs

index 3ebe406..04c88ff 100755 (executable)
@@ -119,6 +119,7 @@ namespace Tizen.NUI.Components
                     notificationWindow = new Window(null, true)
                     {
                         Type = WindowType.Notification,
+                        BackgroundColor = Color.Transparent,
                     };
                     notificationWindow.Show();
                 }