This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathRadioButtonCoreGalleryPage.cs
107 lines (93 loc) · 2.74 KB
/
RadioButtonCoreGalleryPage.cs
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
using System.Collections.Generic;
using Xamarin.Forms.CustomAttributes;
namespace Xamarin.Forms.Controls
{
class RadioButtonCoreGalleryPage : CoreGalleryPage<RadioButton>
{
protected override bool SupportsFocus => false;
protected override bool SupportsTapGestureRecognizer => true;
protected override void InitializeElement(RadioButton element)
{
element.Content = "RadioButton";
}
protected override void Initialize()
{
base.Initialize();
}
protected override void OnDisappearing()
{
Device.SetFlags(new List<string>());
base.OnDisappearing();
}
protected override void Build(StackLayout stackLayout)
{
base.Build(stackLayout);
IsEnabledStateViewContainer.View.CheckedChanged += (sender, args) => IsEnabledStateViewContainer.TitleLabel.Text += " (Checked Changed)";
var borderButtonContainer = new ViewContainer<RadioButton>(Test.Button.BorderColor,
new RadioButton
{
Content = "BorderColor",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
BorderWidth = 1,
}
);
var borderRadiusContainer = new ViewContainer<RadioButton>(Test.Button.BorderRadius,
new RadioButton
{
Content = "BorderRadius",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
BorderWidth = 1,
}
);
var borderWidthContainer = new ViewContainer<RadioButton>(Test.Button.BorderWidth,
new RadioButton
{
Content = "BorderWidth",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
BorderWidth = 15,
}
);
var fontContainer = new ViewContainer<RadioButton>(Test.Button.Font,
new RadioButton
{
Content = "Font",
FontSize = Device.GetNamedSize(NamedSize.Large, typeof(RadioButton)),
FontAttributes = FontAttributes.Bold
}
);
var textContainer = new ViewContainer<RadioButton>(Test.Button.Text,
new RadioButton
{
Content = "Text"
}
);
var textColorContainer = new ViewContainer<RadioButton>(Test.Button.TextColor,
new RadioButton
{
Content = "TextColor",
TextColor = Color.Pink
}
);
var paddingContainer = new ViewContainer<RadioButton>(Test.Button.Padding,
new RadioButton
{
Content = "Padding",
BackgroundColor = Color.Red,
Padding = new Thickness(20, 30, 60, 15)
}
);
var isCheckedContainer = new ValueViewContainer<RadioButton>(Test.RadioButton.IsChecked, new RadioButton() { IsChecked = true, HorizontalOptions = LayoutOptions.Start }, "IsChecked", value => value.ToString());
Add(borderButtonContainer);
Add(borderRadiusContainer);
Add(borderWidthContainer);
Add(fontContainer);
Add(textContainer);
Add(textColorContainer);
Add(paddingContainer);
Add(isCheckedContainer);
}
}
}