mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-06-03 09:34:08 +02:00
Fixed binding errors in title bar buttons
This commit is contained in:
parent
c24f58ee01
commit
2d9af99808
@ -7,7 +7,7 @@ namespace BackupEssentials.Controls{
|
|||||||
public static DependencyProperty PathWidthProperty = DependencyProperty.Register("CXPathWidth",typeof(string),typeof(ButtonTitleBar));
|
public static DependencyProperty PathWidthProperty = DependencyProperty.Register("CXPathWidth",typeof(string),typeof(ButtonTitleBar));
|
||||||
public static DependencyProperty PathHeightProperty = DependencyProperty.Register("CXPathHeight",typeof(string),typeof(ButtonTitleBar));
|
public static DependencyProperty PathHeightProperty = DependencyProperty.Register("CXPathHeight",typeof(string),typeof(ButtonTitleBar));
|
||||||
public static DependencyProperty PathMarginProperty = DependencyProperty.Register("CXPathMargin",typeof(string),typeof(ButtonTitleBar));
|
public static DependencyProperty PathMarginProperty = DependencyProperty.Register("CXPathMargin",typeof(string),typeof(ButtonTitleBar));
|
||||||
public static DependencyProperty PathRotationProperty = DependencyProperty.Register("CXPathRotation",typeof(string),typeof(ButtonTitleBar));
|
public static DependencyProperty PathRotationProperty = DependencyProperty.Register("CXPathRotation",typeof(double),typeof(ButtonTitleBar));
|
||||||
|
|
||||||
public string CXPathData{
|
public string CXPathData{
|
||||||
get { return (string)base.GetValue(PathDataProperty); }
|
get { return (string)base.GetValue(PathDataProperty); }
|
||||||
@ -29,9 +29,9 @@ namespace BackupEssentials.Controls{
|
|||||||
set { base.SetValue(PathMarginProperty,(string)value); }
|
set { base.SetValue(PathMarginProperty,(string)value); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public string CXPathRotation{
|
public double CXPathRotation{
|
||||||
get { return (string)base.GetValue(PathRotationProperty); }
|
get { return (double)base.GetValue(PathRotationProperty); }
|
||||||
set { base.SetValue(PathRotationProperty,(string)value); }
|
set { base.SetValue(PathRotationProperty,(double)value); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user