Files
2026-03-20 09:10:29 -04:00

55 lines
2.3 KiB
XML

<!--
Copyright NetFoundry Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<UserControl x:Class="ZitiDesktopEdge.ExternalProviderSelector"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ZitiDesktopEdge"
mc:Ignorable="d"
d:DesignWidth="275"
Width="275" MouseLeave="UserControl_MouseLeave">
<UserControl.Resources>
</UserControl.Resources>
<Grid Margin="0" Height="Auto" VerticalAlignment="Center">
<Border Background="{StaticResource DarkBackgroundBrush}"
BorderBrush="Gray"
BorderThickness="2"
CornerRadius="5"
>
<StackPanel x:Name="ExternalProvider" Margin="0,0,0,10">
<Label Content="Choose External Provider"
Foreground="White"
FontSize="16"
HorizontalAlignment="Center"
FontWeight="Bold" />
<ListBox SelectionMode="Single" Margin="20,0,20,10">
<d:ListBoxItem Content="Option 1" />
<d:ListBoxItem Content="Option 2" />
<d:ListBoxItem Content="Option 3" />
<d:ListBoxItem Content="Option 4" />
</ListBox>
<Grid>
<local:StyledButton x:Name="AuthenticateWithProvider"
Label="Authenticate With Provider"
IsTabStop="True" />
</Grid>
</StackPanel>
</Border>
</Grid>
</UserControl>