[WPF] Force canvas child add layout updates

This commit is contained in:
ermau 2012-04-06 15:49:46 -04:00
Родитель 3244d309c0
Коммит deb4810174
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -97,6 +97,8 @@ namespace Xwt.WPFBackend
SWC.Canvas.SetLeft (element, bounds.Left * wratio);
element.Height = (bounds.Height > 0) ? bounds.Height * hratio : 0;
element.Width = (bounds.Width > 0) ? bounds.Width * wratio : 0;
((FrameworkElement) widget.NativeWidget).UpdateLayout();
}
public void RemoveChild (IWidgetBackend widget)