-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
856 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.29926.136 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RadarTimingsTester", "RadarTimingsTester\RadarTimingsTester.csproj", "{D733A756-5346-4B34-BA3D-3E004F93C1DC}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{D733A756-5346-4B34-BA3D-3E004F93C1DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{D733A756-5346-4B34-BA3D-3E004F93C1DC}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{D733A756-5346-4B34-BA3D-3E004F93C1DC}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{D733A756-5346-4B34-BA3D-3E004F93C1DC}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {F0BC5F9F-4B98-4C74-AA3A-4A51786841E3} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Application x:Class="RadarTimingsTester.App" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:local="clr-namespace:RadarTimingsTester" | ||
StartupUri="MainWindow.xaml"> | ||
<Application.Resources> | ||
|
||
</Application.Resources> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Configuration; | ||
using System.Data; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
|
||
namespace RadarTimingsTester | ||
{ | ||
/// <summary> | ||
/// Interaction logic for App.xaml | ||
/// </summary> | ||
public partial class App : Application | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Window x:Class="RadarTimingsTester.MainWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:local="clr-namespace:RadarTimingsTester" | ||
mc:Ignorable="d" | ||
Title="Radar Timings Tester (RTT)" Height="720" Width="1080" ResizeMode="CanMinimize"> | ||
<Grid Background="{DynamicResource {x:Static SystemColors.MenuBrushKey}}"> | ||
<Canvas x:Name="MainCanvas" MouseDown="MainCanvas_MouseDown" MouseMove="MainCanvas_MouseMove" MouseUp="MainCanvas_MouseUp" HorizontalAlignment="Left" Width="600" Height="600"/> | ||
<Button Name="LoadMapButton" HorizontalAlignment="Right" VerticalAlignment="Top" Width="300" Height="50" Margin="0,30,75,0" FontSize="30" Click="LoadMapButton_Click">Load Map Radar</Button> | ||
<TextBlock HorizontalAlignment="Right" VerticalAlignment="Top" Width="300" Height="29" Margin="0,100,75,0" FontSize="20" TextAlignment="Center" Visibility="Hidden">Drawing Mode</TextBlock> | ||
<ComboBox Name="DrawOptions" HorizontalAlignment="Right" VerticalAlignment="Top" Width="300" Height="50" Margin="0,129,75,0" FontSize="30" Visibility="Hidden"></ComboBox> | ||
<ListView x:Name="ListOfLines" Width="400" HorizontalAlignment="Right" Margin="0,196,35,77" SelectionChanged="ListOfLines_SelectionChanged"/> | ||
<Button x:Name="Remove" FontSize="30" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,75,15" Width="300" Height="50" Click="Remove_Click">Remove Path</Button> | ||
<TextBlock x:Name="ErrorText" VerticalAlignment="Bottom" HorizontalAlignment="Left" FontSize="15" Foreground="Red" Visibility="Hidden">Error</TextBlock> | ||
</Grid> | ||
</Window> |
Oops, something went wrong.