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 pathButtonCoreGalleryPage.cs
139 lines (123 loc) · 3.22 KB
/
ButtonCoreGalleryPage.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
using Xamarin.Forms.CustomAttributes;
namespace Xamarin.Forms.Controls
{
internal class ButtonCoreGalleryPage : CoreGalleryPage<Button>
{
protected override bool SupportsTapGestureRecognizer
{
get { return false; }
}
protected override bool SupportsFocus
{
get { return false; }
}
protected override void InitializeElement(Button element)
{
element.Text = "Button";
}
protected override void Build(StackLayout stackLayout)
{
base.Build(stackLayout);
IsEnabledStateViewContainer.View.Clicked += (sender, args) => IsEnabledStateViewContainer.TitleLabel.Text += " (Tapped)";
var borderButtonContainer = new ViewContainer<Button>(Test.Button.BorderColor,
new Button
{
Text = "BorderColor",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
BorderWidth = 1,
}
);
var borderRadiusContainer = new ViewContainer<Button>(Test.Button.BorderRadius,
new Button
{
Text = "BorderRadius",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
#pragma warning disable 0618
BorderRadius = 20,
#pragma warning restore
BorderWidth = 1,
}
);
var borderWidthContainer = new ViewContainer<Button>(Test.Button.BorderWidth,
new Button
{
Text = "BorderWidth",
BackgroundColor = Color.Transparent,
BorderColor = Color.Red,
BorderWidth = 15,
}
);
var clickedContainer = new EventViewContainer<Button>(Test.Button.Clicked,
new Button
{
Text = "Clicked"
}
);
clickedContainer.View.Clicked += (sender, args) => clickedContainer.EventFired();
var pressedContainer = new EventViewContainer<Button>(Test.Button.Pressed,
new Button
{
Text = "Pressed"
}
);
pressedContainer.View.Pressed += (sender, args) => pressedContainer.EventFired();
var commandContainer = new ViewContainer<Button>(Test.Button.Command,
new Button
{
Text = "Command",
Command = new Command(() => DisplayActionSheet("Hello Command", "Cancel", "Destroy"))
}
);
var fontContainer = new ViewContainer<Button>(Test.Button.Font,
new Button
{
Text = "Font",
Font = Font.SystemFontOfSize(NamedSize.Large, FontAttributes.Bold)
}
);
var imageContainer = new ViewContainer<Button>(Test.Button.Image,
new Button
{
Text = "Image",
ImageSource = new FileImageSource { File = "bank.png" }
}
)
;
var textContainer = new ViewContainer<Button>(Test.Button.Text,
new Button
{
Text = "Text"
}
);
var textColorContainer = new ViewContainer<Button>(Test.Button.TextColor,
new Button
{
Text = "TextColor",
TextColor = Color.Pink
}
);
var paddingContainer = new ViewContainer<Button>(Test.Button.Padding,
new Button
{
Text = "Padding",
BackgroundColor = Color.Red,
Padding = new Thickness(20, 30, 60, 15)
}
);
Add(borderButtonContainer);
Add(borderRadiusContainer);
Add(borderWidthContainer);
Add(clickedContainer);
Add(pressedContainer);
Add(commandContainer);
Add(fontContainer);
Add(imageContainer);
Add(textContainer);
Add(textColorContainer);
Add(paddingContainer);
//stackLayout.Children.Add (textColorContainer);
}
}
}