Skip to content
Permalink
80ec55a808
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (16 sloc) 1.47 KB
<Window x:Class="DataScraperGUI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="UConn ECE Senior Design - Group 155 - DataScraper" Height="400" Width="525">
<Grid>
<ComboBox Height="23" HorizontalAlignment="Left" Margin="12,46,0,0" Name="programComboBox" VerticalAlignment="Top" Width="479">
<ComboBoxItem Content="Normal program. (Minor variations, no major events.)" />
</ComboBox>
<Label Content="Step 1: Choose a program." Height="28" HorizontalAlignment="Left" Margin="12,12,0,0" Name="label1" VerticalAlignment="Top" />
<Label Content="Step 2: Choose a run-time duration." Height="28" HorizontalAlignment="Left" Margin="12,75,0,0" Name="label2" VerticalAlignment="Top" />
<ProgressBar Height="25" HorizontalAlignment="Left" Margin="12,324,0,0" Name="progressBar" VerticalAlignment="Top" Width="479" />
<Button Content="Button" Height="50" HorizontalAlignment="Left" Margin="12,109,0,0" Name="runButton" VerticalAlignment="Top" Width="150" />
<Button Content="Cancel" Height="50" HorizontalAlignment="Left" Margin="341,109,0,0" Name="cancelButton" VerticalAlignment="Top" Width="150" IsCancel="False" IsEnabled="False" />
<TextBox Height="153" HorizontalAlignment="Left" Margin="12,165,0,0" Name="logBox" VerticalAlignment="Top" Width="479" IsReadOnly="True" />
</Grid>
</Window>