-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMainPage.xaml
87 lines (87 loc) · 3.97 KB
/
MainPage.xaml
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
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:dx="http://schemas.devexpress.com/maui"
xmlns:local="clr-namespace:EditorsGetStarted"
x:Class="EditorsGetStarted.MainPage"
BackgroundColor="{DynamicResource SecondaryColor}">
<ScrollView Padding="{OnPlatform iOS='30,60,30,30', Default='30'}">
<dx:DXStackLayout Padding="12">
<dx:ComboBoxEdit
LabelText="Box Mode"
BoxMode="{Binding SelectedBoxMode}"
SelectedItem="{Binding SelectedBoxMode}"
StartIcon="{Binding SelectedBoxMode, Converter={local:BoxModeToImageSourceConverter Outlined='edit_black_24dp', Filled='edit_black_24dp_filled'}}"
ItemsSource="{Binding BoxModes}"
ReserveBottomTextLine="True"/>
<dx:TextEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="face_black_24dp"
Text="{Binding Login, Mode=TwoWay}"
HasError="{Binding LoginHasError}"
LabelText="Login"
HelpText="*Required"
ErrorText="Login is required"
PlaceholderText="Enter login"/>
<dx:PasswordEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="password_black_24dp"
Text="{Binding Password, Mode=TwoWay}"
HasError="{Binding PasswordHasError}"
LabelText="Password"
HelpText="*Required"
ErrorText="The password should contain more than 5 characters, have at least one uppercase and one lowercase letter, and one number."
PlaceholderText="Enter password"/>
<dx:TextEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="email_black_24dp"
Text="{Binding Email, Mode=TwoWay}"
HasError="{Binding EmailHasError}"
LabelText="Email"
TextHorizontalAlignment="End"
ErrorText="Email is required"
HelpText="*Required"
AffixIndent="0"
ClearIconVisibility="Never"
PlaceholderText="[email protected]"/>
<dx:DateEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="cake_black_24dp"
Date="{Binding BirthDate, Mode=TwoWay}"
HasError="{Binding BirthDateHasError}"
LabelText="Birth date"
TextHorizontalAlignment="End"
ErrorText="Birth date is required"
HelpText="*Required"
IsDateIconVisible="False"
ClearIconVisibility="Auto"
DisplayFormat="d"
PlaceholderText="Enter birth date"/>
<dx:TextEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="phone_black_24dp"
Text="{Binding Phone, Mode=TwoWay}"
HasError="{Binding PhoneHasError}"
LabelText="Phone"
Mask="(000) 000-0000"
ErrorText="Incorrect phone number"
HelpText="Do not include a country code"
Keyboard="Telephone"
PlaceholderText="Enter phone number"/>
<dx:MultilineEdit
BoxMode="{Binding SelectedBoxMode}"
StartIcon="notes_black_24dp"
Text="{Binding Notes, Mode=TwoWay}"
HasError="{Binding NotesHasError}"
MinLineCount="2"
MaxLineCount="4"
LabelText="Notes"
MaxCharacterCount="100"/>
<dx:DXButton
Margin="0,10,0,0"
Content="SUBMIT"
Clicked="OnSubmitClicked"
FontAttributes="Bold"
BackgroundColor="#3F88F7"/>
</dx:DXStackLayout>
</ScrollView>
</ContentPage>