Browse Source

ChildWindow: fixed focus issue where focus rectangles wouldn't follow the elemtns on move.

pull/1645/head
brianlagunas_cp 15 years ago
parent
commit
a5ad7c136e
  1. 2
      ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/ChildWindow/Implementation/ChildWindow.cs

2
ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/ChildWindow/Implementation/ChildWindow.cs

@ -691,6 +691,8 @@ namespace Microsoft.Windows.Controls
{
_moveTransform.X += x;
_moveTransform.Y += y;
InvalidateArrange();
}
#endregion //Private

Loading…
Cancel
Save