1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-05-16 01:34:08 +02:00

Fixed binding errors in title bar buttons

This commit is contained in:
chylex 2015-04-15 19:00:04 +02:00
parent c24f58ee01
commit 2d9af99808

View File

@ -7,7 +7,7 @@ namespace BackupEssentials.Controls{
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 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{
get { return (string)base.GetValue(PathDataProperty); }
@ -29,9 +29,9 @@ namespace BackupEssentials.Controls{
set { base.SetValue(PathMarginProperty,(string)value); }
}
public string CXPathRotation{
get { return (string)base.GetValue(PathRotationProperty); }
set { base.SetValue(PathRotationProperty,(string)value); }
public double CXPathRotation{
get { return (double)base.GetValue(PathRotationProperty); }
set { base.SetValue(PathRotationProperty,(double)value); }
}
}
}