EBS_POC/EBS POC/Controls/Start_Page.xaml

18 lines
1.1 KiB
XML

<UserControl x:Class="EBS_POC.Controls.Start_Page"
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:EBS_POC.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock x:Name="textBlock" TextWrapping="Wrap" Text="No configuration file found. Choose an option." TextAlignment="Center" Margin="0,0,0,20"/>
<Button x:Name="button" Content="Connect to EBS File" Height="30" HorizontalAlignment="Center" Margin="0,0,0,10" Click="button_Click"/>
<Button x:Name="button2" Content="Deploy New EBS File" Height="30" HorizontalAlignment="Center" Click="button2_Click"/>
</StackPanel>
</Grid>
</UserControl>