blob: 6d3ed38e6c439609aa0c63067728b2c7d310f2bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
using System.ComponentModel;
using EColor = ElmSharp.Color;
using ERectangle = ElmSharp.Rectangle;
namespace Xamarin.Forms.Platform.Tizen
{
public class BoxViewRenderer : ViewRenderer<BoxView, ERectangle>
{
public BoxViewRenderer()
{
}
protected override void OnElementChanged(ElementChangedEventArgs<BoxView> e)
{
if (Control == null)
{
var rectangle = new ERectangle(Forms.Context.MainWindow);
SetNativeControl(rectangle);
}
if (e.NewElement != null)
{
UpdateColor();
}
base.OnElementChanged(e);
}
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == BoxView.ColorProperty.PropertyName)
{
UpdateColor();
}
base.OnElementPropertyChanged(sender, e);
}
protected override void UpdateBackgroundColor()
{
UpdateColor();
}
protected override void UpdateOpacity()
{
UpdateColor();
}
void UpdateColor()
{
if (Element.Color.IsDefault)
{
if (Element.BackgroundColor.IsDefault)
{
// Set to default color. (Transparent)
Control.Color = EColor.Transparent;
}
else
{
// Use BackgroundColor only if color is default and background color is not default.
Control.Color = Element.BackgroundColor.MultiplyAlpha(Element.Opacity).ToNative();
}
}
else
{
// Color has higer priority than BackgroundColor.
Control.Color = Element.Color.MultiplyAlpha(Element.Opacity).ToNative();
}
}
}
}
|