Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz committed Apr 5, 2021
1 parent dc3b67b commit e997c08
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Core/src/Platform/Windows/ViewExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ public static void UpdateIsEnabled(this FrameworkElement nativeView, IView view)
public static void UpdateBackgroundColor(this FrameworkElement nativeView, IView view) =>
(nativeView as Control)?.UpdateBackgroundColor(view.BackgroundColor);

public static void UpdateBorderColor(this FrameworkElement nativeView, IView view) { }

public static void UpdateBorderWidth(this FrameworkElement nativeView, IView view) { }

public static void UpdateCornerRadius(this FrameworkElement nativeView, IView view) { }

public static void UpdateAutomationId(this FrameworkElement nativeView, IView view) =>
AutomationProperties.SetAutomationId(nativeView, view.AutomationId);
}
Expand Down

0 comments on commit e997c08

Please sign in to comment.