Datepicker, Timepicker, Picker
This commit is contained in:
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<Border Style="{StaticResource Border.Page}">
|
<Border Style="{StaticResource Border.Page}">
|
||||||
<ScrollView>
|
<ScrollView>
|
||||||
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto, Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
||||||
ColumnDefinitions="Auto, *"
|
ColumnDefinitions="Auto, *"
|
||||||
Style="{StaticResource Grid.Page}">
|
Style="{StaticResource Grid.Page}">
|
||||||
|
|
||||||
@ -86,11 +86,42 @@
|
|||||||
<RadioButton GroupName="EmployeeType"/>
|
<RadioButton GroupName="EmployeeType"/>
|
||||||
</HorizontalStackLayout>
|
</HorizontalStackLayout>
|
||||||
</FlexLayout>
|
</FlexLayout>
|
||||||
|
|
||||||
|
<Label Text="Birth Date"
|
||||||
|
Grid.Row="8"/>
|
||||||
|
<DatePicker Grid.Row="8"
|
||||||
|
Grid.Column="1"
|
||||||
|
HorizontalOptions="Start"/>
|
||||||
|
<Label Text="Start Time"
|
||||||
|
Grid.Row="9"/>
|
||||||
|
<TimePicker Grid.Row="9"
|
||||||
|
Grid.Column="1"
|
||||||
|
Time="06:00:00"/>
|
||||||
|
|
||||||
|
<Label Text="Phone"
|
||||||
|
Grid.Row="10"/>
|
||||||
|
<FlexLayout Grid.Row="10"
|
||||||
|
Grid.Column="1"
|
||||||
|
Wrap="Wrap"
|
||||||
|
Direction="Row">
|
||||||
|
<HorizontalStackLayout>
|
||||||
|
<Entry MinimumWidthRequest="120"/>
|
||||||
|
<Picker>
|
||||||
|
<Picker.ItemsSource>
|
||||||
|
<x:Array Type="{x:Type x:String}">
|
||||||
|
<x:String>Home</x:String>
|
||||||
|
<x:String>Mobile</x:String>
|
||||||
|
<x:String>Other</x:String>
|
||||||
|
</x:Array>
|
||||||
|
</Picker.ItemsSource>
|
||||||
|
</Picker>
|
||||||
|
</HorizontalStackLayout>
|
||||||
|
</FlexLayout>
|
||||||
|
|
||||||
<partial:AddressView Grid.Row="8"
|
<partial:AddressView Grid.Row="11"
|
||||||
Grid.ColumnSpan="2" />
|
Grid.ColumnSpan="2" />
|
||||||
|
|
||||||
<HorizontalStackLayout Grid.Row="9"
|
<HorizontalStackLayout Grid.Row="12"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Spacing="5">
|
Spacing="5">
|
||||||
<Button Text="Save" />
|
<Button Text="Save" />
|
||||||
|
|||||||
Reference in New Issue
Block a user