mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 14:37:01 +00:00
Use expression bodies for properties
This commit is contained in:
parent
e8b37f03ff
commit
74ba508e26
33 changed files with 194 additions and 230 deletions
|
|
@ -61,8 +61,8 @@ namespace MapControl
|
|||
|
||||
public string SourcePath
|
||||
{
|
||||
get { return (string)GetValue(SourcePathProperty); }
|
||||
set { SetValue(SourcePathProperty, value); }
|
||||
get => (string)GetValue(SourcePathProperty);
|
||||
set => SetValue(SourcePathProperty, value);
|
||||
}
|
||||
|
||||
private async Task SourcePathPropertyChanged(string sourcePath)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue