Skip to content
Permalink
87ae42c3da
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
20 lines (20 sloc) 1.8 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 - HVAC Tester" Height="400" Width="525">
<Grid>
<ComboBox Height="23" HorizontalAlignment="Left" Margin="12,46,0,0" Name="programComboBox" VerticalAlignment="Top" Width="479">
<ComboBoxItem Content="Normal" IsSelected="True" />
<ComboBoxItem Content="Temperature too COLD" />
<ComboBoxItem Content="Temperature too HOT" />
<ComboBoxItem Content="No air flow" />
<ComboBoxItem Content="Air too dry" />
</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="Run" Height="50" HorizontalAlignment="Left" Margin="12,109,0,0" Name="runButton" VerticalAlignment="Top" Width="150" Click="runButton_Click"/>
<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" TextWrapping="NoWrap" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Disabled" />
</Grid>
</Window>