[Frame] Notify border changes to the backend

This commit is contained in:
Lluis Sanchez 2013-05-29 16:51:23 +02:00
Родитель 8aa12cf7be
Коммит 1888edbc9a
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -139,7 +139,7 @@ namespace Xwt
get { return borderWidth; }
set {
borderWidth = value;
UpdatePadding ();
UpdateBorderWidth ();
}
}
@ -148,7 +148,7 @@ namespace Xwt
get { return borderWidth.Left; }
set {
borderWidth.Left = value;
UpdatePadding ();
UpdateBorderWidth ();
}
}
@ -157,7 +157,7 @@ namespace Xwt
get { return borderWidth.Right; }
set {
borderWidth.Right = value;
UpdatePadding ();
UpdateBorderWidth ();
}
}
@ -166,7 +166,7 @@ namespace Xwt
get { return borderWidth.Top; }
set {
borderWidth.Top = value;
UpdatePadding ();
UpdateBorderWidth ();
}
}
@ -175,7 +175,7 @@ namespace Xwt
get { return borderWidth.Bottom; }
set {
borderWidth.Bottom = value;
UpdatePadding ();
UpdateBorderWidth ();
}
}