зеркало из https://github.com/DeGsoft/maui-linux.git
57 строки
1.4 KiB
C#
57 строки
1.4 KiB
C#
using System.ComponentModel;
|
|
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Automation.Peers;
|
|
using Windows.UI.Xaml.Shapes;
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
{
|
|
public class BoxViewRenderer : ViewRenderer<BoxView, Windows.UI.Xaml.Shapes.Rectangle>
|
|
{
|
|
protected override void OnElementChanged(ElementChangedEventArgs<BoxView> e)
|
|
{
|
|
base.OnElementChanged(e);
|
|
|
|
if (e.NewElement != null)
|
|
{
|
|
if (Control == null)
|
|
{
|
|
var rect = new Windows.UI.Xaml.Shapes.Rectangle
|
|
{
|
|
DataContext = Element
|
|
};
|
|
|
|
rect.SetBinding(Shape.FillProperty, new Windows.UI.Xaml.Data.Binding { Converter = new ColorConverter(), Path = new PropertyPath("Color") });
|
|
|
|
SetNativeControl(rect);
|
|
}
|
|
|
|
SetCornerRadius(Element.CornerRadius);
|
|
}
|
|
}
|
|
|
|
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
{
|
|
base.OnElementPropertyChanged(sender, e);
|
|
|
|
if (e.PropertyName == BoxView.CornerRadiusProperty.PropertyName)
|
|
SetCornerRadius(Element.CornerRadius);
|
|
}
|
|
|
|
protected override AutomationPeer OnCreateAutomationPeer()
|
|
{
|
|
// We need an automation peer so we can interact with this in automated tests
|
|
if (Control == null)
|
|
{
|
|
return new FrameworkElementAutomationPeer(this);
|
|
}
|
|
|
|
return new FrameworkElementAutomationPeer(Control);
|
|
}
|
|
|
|
private void SetCornerRadius(CornerRadius cornerRadius)
|
|
{
|
|
Control.RadiusX = cornerRadius.TopLeft;
|
|
Control.RadiusY = cornerRadius.BottomRight;
|
|
}
|
|
}
|
|
} |