mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-05 06:26:41 +00:00
Version 4.9.0: Reworked MapPanel child arrangement.
This commit is contained in:
parent
5a05e9284a
commit
ea2cd438fa
2 changed files with 33 additions and 0 deletions
|
|
@ -110,6 +110,31 @@ namespace MapControl
|
|||
set { SetValue(StrokeMiterLimitProperty, value); }
|
||||
}
|
||||
|
||||
public Binding FontSizeBinding
|
||||
{
|
||||
get { return GetBinding(FontSizeProperty, nameof(FontSize)); }
|
||||
}
|
||||
|
||||
public Binding FontFamilyBinding
|
||||
{
|
||||
get { return GetBinding(FontFamilyProperty, nameof(FontFamily)); }
|
||||
}
|
||||
|
||||
public Binding FontStyleBinding
|
||||
{
|
||||
get { return GetBinding(FontStyleProperty, nameof(FontStyle)); }
|
||||
}
|
||||
|
||||
public Binding FontStretchBinding
|
||||
{
|
||||
get { return GetBinding(FontStretchProperty, nameof(FontStretch)); }
|
||||
}
|
||||
|
||||
public Binding FontWeightBinding
|
||||
{
|
||||
get { return GetBinding(FontWeightProperty, nameof(FontWeight)); }
|
||||
}
|
||||
|
||||
public Binding ForegroundBinding
|
||||
{
|
||||
get { return GetBinding(ForegroundProperty, nameof(Foreground)); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue