зеркало из https://github.com/DeGsoft/maui-linux.git
[UWP] Fix Transparent Default Button (#468)
This commit is contained in:
Родитель
62c3993be3
Коммит
8aa29ec344
|
@ -74,7 +74,9 @@ namespace Xamarin.Forms.Platform.WinRT
|
|||
|
||||
void UpdateBackgroundColor()
|
||||
{
|
||||
Background = Color.Transparent.ToBrush();
|
||||
if (BackgroundColor == null)
|
||||
BackgroundColor = Background;
|
||||
|
||||
#if WINDOWS_UWP
|
||||
if (_contentPresenter != null)
|
||||
_contentPresenter.Background = BackgroundColor;
|
||||
|
@ -82,6 +84,7 @@ namespace Xamarin.Forms.Platform.WinRT
|
|||
if (_border != null)
|
||||
_border.Background = BackgroundColor;
|
||||
#endif
|
||||
Background = Color.Transparent.ToBrush();
|
||||
}
|
||||
|
||||
void UpdateBorderRadius()
|
||||
|
|
Загрузка…
Ссылка в новой задаче