Skip to content

Commit

Permalink
Map Locations Light Up
Browse files Browse the repository at this point in the history
- Changed the map locations to light up on mouse over.
  • Loading branch information
trippsc2 committed Apr 19, 2020
1 parent 1c9e3af commit 86ff600
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion OpenTracker.Models/OpenTracker.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>0.8.0</Version>
<Version>0.8.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions OpenTracker.Setup/OpenTracker.Setup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -274,15 +274,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:OpenTracker"
"ProductCode" = "8:{4BDAF4C5-99EA-4D74-B743-D0B96C70E3DA}"
"PackageCode" = "8:{0110FA88-E80B-44A7-9033-2FE5BDF23931}"
"ProductCode" = "8:{7ABF3E44-0DD5-48D4-A792-3BA6BCAB8C91}"
"PackageCode" = "8:{39BBFD34-33C5-432D-95C0-622DDFAC5408}"
"UpgradeCode" = "8:{C98C2121-B4C5-473A-9B86-5407FEFFE8F1}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:0.8.0"
"ProductVersion" = "8:0.8.1"
"Manufacturer" = "8:OpenTracker"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
8 changes: 8 additions & 0 deletions OpenTracker/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,15 @@
<Setter Property="Background" Value="#2D4848" />
<Setter Property="Margin" Value="5" />
</Style>

<Style Selector="Border.MapLocation">
<Setter Property="BorderBrush" Value="#000000" />
</Style>

<Style Selector="Border.MapLocation:pointerover">
<Setter Property="BorderBrush" Value="#FFFFFF" />
</Style>

<Style Selector="Menu.MenuBar">
<Setter Property="Background" Value="#262626" />
</Style>
Expand Down
6 changes: 3 additions & 3 deletions OpenTracker/OpenTracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon>triforce.ico</ApplicationIcon>
<Win32Resource />
<Version>0.8.0</Version>
<Version>0.8.1</Version>
<Authors>Tripp</Authors>
<AssemblyVersion>0.8.0.0</AssemblyVersion>
<FileVersion>0.8.0.0</FileVersion>
<AssemblyVersion>0.8.1.0</AssemblyVersion>
<FileVersion>0.8.1.0</FileVersion>
<RuntimeIdentifiers>osx-x64;linux-x64;debian-x64;rhel-x64;win-x64;win-x86;win7-x64;win7-x86</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion OpenTracker/Views/MapLocationControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Panel Width="{Binding Path=Size}" Height="{Binding Path=Size}" IsVisible="{Binding Path=Visible}"
IsHitTestVisible="{Binding Path=Visible}" DoubleTapped="OnDoubleClick"
PointerReleased="OnClick">
<Border Width="{Binding Path=Size}" Height="{Binding Path=Size}" BorderBrush="#212121"
<Border Classes="MapLocation" Width="{Binding Path=Size}" Height="{Binding Path=Size}"
Background="{Binding Path=Color}" IsVisible="{Binding Path=BorderVisible}"
IsHitTestVisible="{Binding Path=BorderVisible}" BorderThickness="{Binding Path=BorderSize}" />
<Image HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stretch="Uniform"
Expand Down

0 comments on commit 86ff600

Please sign in to comment.