forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTokenSecuredChallenge.xaml
131 lines (126 loc) · 7.21 KB
/
TokenSecuredChallenge.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
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
<UserControl x:Class="ArcGISRuntime.WPF.Samples.TokenSecuredChallenge.TokenSecuredChallenge"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid x:Name="layoutGrid">
<esri:MapView x:Name="MyMapView">
<esri:Map>
<!-- This layer is public and does not require credentials -->
<esri:ArcGISTiledLayer Name="World Street Map - Public"
Source="https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" />
<!-- This layer is secured with ArcGIS tokens and requires a login -->
<!--username: user1 | password: user1-->
<esri:ArcGISMapImageLayer Name="USA - Secure"
Source="https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA_secure_user1/MapServer" />
</esri:Map>
</esri:MapView>
<!-- Layer listing with status -->
<Border Style="{StaticResource BorderStyle}">
<StackPanel>
<TextBlock FontSize="14" FontWeight="Bold"
Margin="4"
Text="Map layers (with status)" />
<ListView x:Name="listLayerStatus"
Padding="6"
ItemsSource="{Binding ElementName=MyMapView, Path=Map.AllLayers}">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Name}"
HorizontalAlignment="Left" />
<StackPanel Orientation="Horizontal">
<TextBlock Margin="20,0,0,5"
FontWeight="Bold">
<TextBlock.Style>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding LoadStatus}"
Value="2">
<Setter Property="Foreground" Value="Red" />
<Setter Property="Text" Value="Access Denied" />
</DataTrigger>
<DataTrigger Binding="{Binding LoadStatus}" Value="0">
<Setter Property="Foreground" Value="Green" />
<Setter Property="Text" Value="Access Granted" />
</DataTrigger>
</Style.Triggers>
<Style.Setters>
<Setter Property="Foreground" Value="Black" />
<Setter Property="Text" Value="Initializing" />
</Style.Setters>
</Style>
</TextBlock.Style>
</TextBlock>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
</Border>
<!-- Login UI -->
<Border x:Name="loginPanel"
Style="{StaticResource BorderStyle}" HorizontalAlignment="Left"
Visibility="Collapsed">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"
Margin="0,0,0,8"
TextWrapping="Wrap"
Text="{Binding ServiceUrl, StringFormat='Login to: {0}'}" />
<TextBlock Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"
Margin="0,0,0,8"
TextWrapping="Wrap" FontWeight="SemiBold"
Text="Username and password are user1/user1" />
<TextBlock Grid.Row="2" Grid.Column="0"
Margin="2"
VerticalAlignment="Center"
Text="Username" />
<TextBox Grid.Row="2" Grid.Column="1"
Margin="2"
Text="{Binding UserName, UpdateSourceTrigger=PropertyChanged}" />
<TextBlock Grid.Row="3" Grid.Column="0"
Margin="2"
VerticalAlignment="Center"
Text="Password" />
<!-- For simplicity, the password is visible in this example. You can use a PasswordBox to mask the password text,
but it complicates data binding. See this discussion for details: http://stackoverflow.com/questions/1483892/how-to-bind-to-a-passwordbox-in-mvvm -->
<TextBox Grid.Row="3" Grid.Column="1"
Margin="2"
Text="{Binding Password, UpdateSourceTrigger=PropertyChanged}" />
<Button Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2"
Margin="0,12,0,0" Padding="5,2.5,5,2.5"
HorizontalAlignment="Center"
Content="Login and load layer"
IsDefault="True"
Click="LoginButtonClick" />
<TextBlock Grid.Row="5" Grid.Column="0" Grid.ColumnSpan="2"
Margin="8,12,8,0"
Foreground="Red"
TextWrapping="Wrap"
Text="{Binding ErrorMessage}">
<TextBlock.Style>
<Style TargetType="{x:Type TextBlock}">
<Style.Triggers>
<DataTrigger Binding="{Binding ErrorMessage}" Value="">
<Setter Property="Visibility" Value="Collapsed" />
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</Grid>
</Border>
</Grid>
</UserControl>