forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaveMapPage.xaml
35 lines (35 loc) · 1.31 KB
/
SaveMapPage.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGISRuntime.Samples.AuthorMap.SaveMapPage"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<ContentPage.Content>
<TableView x:Name="SaveMapUI"
Grid.Row="0"
Intent="Form">
<TableRoot>
<TableSection Title="Map Information">
<EntryCell x:Name="MapTitleEntry"
Label="Title:"
Placeholder="Required"/>
<EntryCell x:Name="MapDescriptionEntry"
Label="Description:"
Placeholder="Required"/>
<EntryCell x:Name="MapTagsEntry"
Label="Tags:"
Text="ArcGIS Runtime, Webmap"/>
<ViewCell>
<StackLayout Orientation="Horizontal"
HorizontalOptions="CenterAndExpand">
<Button Text="Cancel"
Clicked="CancelButtonClicked"
Margin="20,0"/>
<Button x:Name="SaveMapButton"
Text="Save"
Clicked="SaveButtonClicked"/>
</StackLayout>
</ViewCell>
</TableSection>
</TableRoot>
</TableView>
</ContentPage.Content>
</ContentPage>