mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-04 14:08:32 +00:00
Removed string.Empty
This commit is contained in:
parent
e67d7ee1e3
commit
37b3809b8f
6 changed files with 13 additions and 17 deletions
|
|
@ -89,14 +89,14 @@ namespace SampleApplication
|
|||
else
|
||||
{
|
||||
mouseLocation.Visibility = Visibility.Collapsed;
|
||||
mouseLocation.Text = string.Empty;
|
||||
mouseLocation.Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
private void MapPointerExited(object sender, PointerRoutedEventArgs e)
|
||||
{
|
||||
mouseLocation.Visibility = Visibility.Collapsed;
|
||||
mouseLocation.Text = string.Empty;
|
||||
mouseLocation.Text = "";
|
||||
}
|
||||
|
||||
private static string GetLatLonText(Location location)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue