2017-02-02 21:23:31 +03:00
|
|
|
using System;
|
2016-03-22 23:02:25 +03:00
|
|
|
using System.ComponentModel;
|
|
|
|
using Windows.UI.Xaml;
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
using Windows.UI.Xaml.Media;
|
|
|
|
using Windows.UI.Xaml.Media.Imaging;
|
2016-06-08 18:47:00 +03:00
|
|
|
using Xamarin.Forms.Internals;
|
2016-03-22 23:02:25 +03:00
|
|
|
using WThickness = Windows.UI.Xaml.Thickness;
|
|
|
|
using WButton = Windows.UI.Xaml.Controls.Button;
|
|
|
|
using WImage = Windows.UI.Xaml.Controls.Image;
|
2017-02-02 21:23:31 +03:00
|
|
|
using Windows.UI.Xaml.Input;
|
2016-03-22 23:02:25 +03:00
|
|
|
|
|
|
|
#if WINDOWS_UWP
|
|
|
|
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
|
|
#else
|
|
|
|
|
|
|
|
namespace Xamarin.Forms.Platform.WinRT
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
public class ButtonRenderer : ViewRenderer<Button, FormsButton>
|
|
|
|
{
|
|
|
|
bool _fontApplied;
|
|
|
|
|
|
|
|
protected override void OnElementChanged(ElementChangedEventArgs<Button> e)
|
|
|
|
{
|
|
|
|
base.OnElementChanged(e);
|
|
|
|
|
|
|
|
if (e.NewElement != null)
|
|
|
|
{
|
|
|
|
if (Control == null)
|
|
|
|
{
|
|
|
|
var button = new FormsButton();
|
|
|
|
button.Click += OnButtonClick;
|
2017-02-02 21:23:31 +03:00
|
|
|
button.AddHandler(PointerPressedEvent, new PointerEventHandler(OnPointerPressed), true);
|
2016-03-22 23:02:25 +03:00
|
|
|
SetNativeControl(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateContent();
|
|
|
|
|
|
|
|
if (Element.BackgroundColor != Color.Default)
|
|
|
|
UpdateBackground();
|
|
|
|
|
|
|
|
if (Element.TextColor != Color.Default)
|
|
|
|
UpdateTextColor();
|
|
|
|
|
|
|
|
if (Element.BorderColor != Color.Default)
|
|
|
|
UpdateBorderColor();
|
|
|
|
|
2016-11-17 00:05:28 +03:00
|
|
|
if (Element.BorderWidth != (double)Button.BorderWidthProperty.DefaultValue)
|
2016-03-22 23:02:25 +03:00
|
|
|
UpdateBorderWidth();
|
|
|
|
|
|
|
|
if (Element.BorderRadius != (int)Button.BorderRadiusProperty.DefaultValue)
|
|
|
|
UpdateBorderRadius();
|
|
|
|
|
|
|
|
UpdateFont();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
|
|
|
{
|
|
|
|
base.OnElementPropertyChanged(sender, e);
|
|
|
|
|
|
|
|
if (e.PropertyName == Button.TextProperty.PropertyName || e.PropertyName == Button.ImageProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateContent();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateBackground();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == Button.TextColorProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateTextColor();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == Button.FontProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateFont();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == Button.BorderColorProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateBorderColor();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == Button.BorderWidthProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateBorderWidth();
|
|
|
|
}
|
|
|
|
else if (e.PropertyName == Button.BorderRadiusProperty.PropertyName)
|
|
|
|
{
|
|
|
|
UpdateBorderRadius();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 01:41:39 +03:00
|
|
|
protected override void UpdateBackgroundColor()
|
|
|
|
{
|
|
|
|
// Button is a special case; we don't want to set the Control's background
|
|
|
|
// because it goes outside the bounds of the Border/ContentPresenter,
|
|
|
|
// which is where we might change the BorderRadius to create a rounded shape.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-29 11:52:45 +03:00
|
|
|
protected override bool PreventGestureBubbling { get; set; } = true;
|
|
|
|
|
2016-03-22 23:02:25 +03:00
|
|
|
void OnButtonClick(object sender, RoutedEventArgs e)
|
|
|
|
{
|
2017-02-02 21:23:31 +03:00
|
|
|
((IButtonController)Element)?.SendReleased();
|
|
|
|
((IButtonController)Element)?.SendClicked();
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
|
2017-02-02 21:23:31 +03:00
|
|
|
void OnPointerPressed(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
((IButtonController)Element)?.SendPressed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateBackground()
|
2016-03-22 23:02:25 +03:00
|
|
|
{
|
2016-03-30 01:41:39 +03:00
|
|
|
Control.BackgroundColor = Element.BackgroundColor != Color.Default ? Element.BackgroundColor.ToBrush() : (Brush)Windows.UI.Xaml.Application.Current.Resources["ButtonBackgroundThemeBrush"];
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateBorderColor()
|
|
|
|
{
|
|
|
|
Control.BorderBrush = Element.BorderColor != Color.Default ? Element.BorderColor.ToBrush() : (Brush)Windows.UI.Xaml.Application.Current.Resources["ButtonBorderThemeBrush"];
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateBorderRadius()
|
|
|
|
{
|
|
|
|
Control.BorderRadius = Element.BorderRadius;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateBorderWidth()
|
|
|
|
{
|
2016-11-17 00:05:28 +03:00
|
|
|
Control.BorderThickness = Element.BorderWidth == (double)Button.BorderWidthProperty.DefaultValue ? new WThickness(3) : new WThickness(Element.BorderWidth);
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateContent()
|
|
|
|
{
|
2016-03-23 02:16:53 +03:00
|
|
|
var text = Element.Text;
|
|
|
|
var elementImage = Element.Image;
|
|
|
|
|
|
|
|
// No image, just the text
|
|
|
|
if (elementImage == null)
|
2016-03-22 23:02:25 +03:00
|
|
|
{
|
2016-03-23 02:16:53 +03:00
|
|
|
Control.Content = text;
|
|
|
|
return;
|
|
|
|
}
|
2016-03-22 23:02:25 +03:00
|
|
|
|
2016-06-08 18:47:00 +03:00
|
|
|
var bmp = new BitmapImage(new Uri("ms-appx:///" + elementImage.File));
|
|
|
|
|
2016-03-23 02:16:53 +03:00
|
|
|
var image = new WImage
|
|
|
|
{
|
2016-06-08 18:47:00 +03:00
|
|
|
Source = bmp,
|
2016-03-23 02:16:53 +03:00
|
|
|
VerticalAlignment = VerticalAlignment.Center,
|
2016-06-08 18:47:00 +03:00
|
|
|
HorizontalAlignment = HorizontalAlignment.Center,
|
|
|
|
Stretch = Stretch.Uniform
|
|
|
|
};
|
|
|
|
|
|
|
|
bmp.ImageOpened += (sender, args) => {
|
|
|
|
image.Width = bmp.PixelWidth;
|
|
|
|
image.Height = bmp.PixelHeight;
|
2017-03-07 22:56:24 +03:00
|
|
|
Element.InvalidateMeasureNonVirtual(InvalidationTrigger.RendererReady);
|
2016-03-23 02:16:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// No text, just the image
|
|
|
|
if (string.IsNullOrEmpty(text))
|
|
|
|
{
|
|
|
|
Control.Content = image;
|
|
|
|
return;
|
|
|
|
}
|
2016-03-22 23:02:25 +03:00
|
|
|
|
2016-03-23 02:16:53 +03:00
|
|
|
// Both image and text, so we need to build a container for them
|
2016-06-08 18:47:00 +03:00
|
|
|
Control.Content = CreateContentContainer(Element.ContentLayout, image, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static StackPanel CreateContentContainer(Button.ButtonContentLayout layout, WImage image, string text)
|
|
|
|
{
|
2016-03-23 02:16:53 +03:00
|
|
|
var container = new StackPanel();
|
2016-06-08 18:47:00 +03:00
|
|
|
var textBlock = new TextBlock {
|
2016-03-23 02:16:53 +03:00
|
|
|
Text = text,
|
|
|
|
VerticalAlignment = VerticalAlignment.Center,
|
|
|
|
HorizontalAlignment = HorizontalAlignment.Center
|
|
|
|
};
|
2016-03-22 23:02:25 +03:00
|
|
|
|
2016-03-23 02:16:53 +03:00
|
|
|
var spacing = layout.Spacing;
|
|
|
|
|
|
|
|
container.HorizontalAlignment = HorizontalAlignment.Center;
|
|
|
|
container.VerticalAlignment = VerticalAlignment.Center;
|
|
|
|
|
|
|
|
switch (layout.Position)
|
2016-03-22 23:02:25 +03:00
|
|
|
{
|
2016-03-23 02:16:53 +03:00
|
|
|
case Button.ButtonContentLayout.ImagePosition.Top:
|
|
|
|
container.Orientation = Orientation.Vertical;
|
|
|
|
image.Margin = new WThickness(0, 0, 0, spacing);
|
|
|
|
container.Children.Add(image);
|
|
|
|
container.Children.Add(textBlock);
|
|
|
|
break;
|
|
|
|
case Button.ButtonContentLayout.ImagePosition.Bottom:
|
|
|
|
container.Orientation = Orientation.Vertical;
|
|
|
|
image.Margin = new WThickness(0, spacing, 0, 0);
|
|
|
|
container.Children.Add(textBlock);
|
|
|
|
container.Children.Add(image);
|
|
|
|
break;
|
|
|
|
case Button.ButtonContentLayout.ImagePosition.Right:
|
|
|
|
container.Orientation = Orientation.Horizontal;
|
|
|
|
image.Margin = new WThickness(spacing, 0, 0, 0);
|
|
|
|
container.Children.Add(textBlock);
|
|
|
|
container.Children.Add(image);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Defaults to image on the left
|
|
|
|
container.Orientation = Orientation.Horizontal;
|
|
|
|
image.Margin = new WThickness(0, 0, spacing, 0);
|
|
|
|
container.Children.Add(image);
|
|
|
|
container.Children.Add(textBlock);
|
|
|
|
break;
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
2016-03-23 02:16:53 +03:00
|
|
|
|
2016-06-08 18:47:00 +03:00
|
|
|
return container;
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateFont()
|
|
|
|
{
|
|
|
|
if (Control == null || Element == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (Element.Font == Font.Default && !_fontApplied)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Font fontToApply = Element.Font == Font.Default ? Font.SystemFontOfSize(NamedSize.Medium) : Element.Font;
|
|
|
|
|
|
|
|
Control.ApplyFont(fontToApply);
|
|
|
|
_fontApplied = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateTextColor()
|
|
|
|
{
|
|
|
|
Control.Foreground = Element.TextColor != Color.Default ? Element.TextColor.ToBrush() : (Brush)Windows.UI.Xaml.Application.Current.Resources["DefaultTextForegroundThemeBrush"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|