mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 22:46:58 +00:00
Version 7.3. Added tile and map image progress reporting.
This commit is contained in:
parent
3119c0fc9b
commit
17fdd63ce9
6 changed files with 67 additions and 34 deletions
|
|
@ -45,25 +45,25 @@ namespace MapControl
|
|||
|
||||
path.SetBinding(Shape.FillProperty, new Binding
|
||||
{
|
||||
Path = new PropertyPath("Background"),
|
||||
Path = new PropertyPath(nameof(Background)),
|
||||
Source = this
|
||||
});
|
||||
|
||||
path.SetBinding(Shape.StrokeProperty, new Binding
|
||||
{
|
||||
Path = new PropertyPath("BorderBrush"),
|
||||
Path = new PropertyPath(nameof(BorderBrush)),
|
||||
Source = this
|
||||
});
|
||||
|
||||
path.SetBinding(Shape.StrokeThicknessProperty, new Binding
|
||||
{
|
||||
Path = new PropertyPath("BorderThickness"),
|
||||
Path = new PropertyPath(nameof(BorderWidth)),
|
||||
Source = this
|
||||
});
|
||||
|
||||
border.SetBinding(PaddingProperty, new Binding
|
||||
{
|
||||
Path = new PropertyPath("Padding"),
|
||||
Path = new PropertyPath(nameof(Padding)),
|
||||
Source = this
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue