EBS_POC/EBS POC/Controls/Connect_Page.xaml

16 lines
983 B
XML

<UserControl x:Class="EBS_POC.Controls.Connect_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>
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="10,10,0,0" TextWrapping="Wrap" Text="EBS File Location:" VerticalAlignment="Top"/>
<TextBox x:Name="textBox" Height="23" Margin="10,31,10,0" TextWrapping="Wrap" VerticalAlignment="Top"/>
<Button x:Name="buttonConnect" Content="Connect" HorizontalAlignment="Right" Margin="0,59,10,0" VerticalAlignment="Top" Width="75" Click="buttonConnect_Click"/>
</Grid>
</UserControl>