From e2da5195235256688f82e519d2656938c969cb7c Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Mon, 29 Aug 2022 17:19:01 +0900 Subject: [PATCH] Update MauiPicker.cs --- src/Core/src/Platform/Tizen/MauiPicker.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Core/src/Platform/Tizen/MauiPicker.cs b/src/Core/src/Platform/Tizen/MauiPicker.cs index 9e8126165280..b2dccccced9d 100644 --- a/src/Core/src/Platform/Tizen/MauiPicker.cs +++ b/src/Core/src/Platform/Tizen/MauiPicker.cs @@ -16,7 +16,7 @@ public MauiPicker() { _underline = new NView { - Color = _defaultUnderlineColor, + BackgroundColor = _defaultUnderlineColor, SizeHeight = 1d.ToScaledPixel(), WidthResizePolicy = ResizePolicyType.FillToParent, ParentOrigin = Position.ParentOriginBottomLeft @@ -31,7 +31,7 @@ public MauiPicker() protected override void OnEnabled(bool enabled) { base.OnEnabled(enabled); - _underline.Color = enabled ? _defaultUnderlineColor : NColor.LightGray; + _underline.BackgroundColor = enabled ? _defaultUnderlineColor : NColor.LightGray; } } -} \ No newline at end of file +}