aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-03-14 13:25:32 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-03-14 13:25:32 +0200
commitc5cde62cecfdd413e9902b26b30b0d4dfd05a24d (patch)
treebc6cd0fc62c13bc65bcb1eeebfac4f5d6112f7ae /Software/Visual_Studio/Tango.Touch/Controls
parent81d88a18ac614604befb041a81781ab33eb08067 (diff)
downloadTango-c5cde62cecfdd413e9902b26b30b0d4dfd05a24d.tar.gz
Tango-c5cde62cecfdd413e9902b26b30b0d4dfd05a24d.zip
Machine Studio v4.0.10
PPC v1.0.9
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Controls/LightTouchDataGrid.cs16
1 files changed, 7 insertions, 9 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/LightTouchDataGrid.cs b/Software/Visual_Studio/Tango.Touch/Controls/LightTouchDataGrid.cs
index f098af31d..552543320 100644
--- a/Software/Visual_Studio/Tango.Touch/Controls/LightTouchDataGrid.cs
+++ b/Software/Visual_Studio/Tango.Touch/Controls/LightTouchDataGrid.cs
@@ -555,16 +555,14 @@ namespace Tango.Touch.Controls
current_top += (ordered[i].Margin.Top + ordered[i].ActualHeight + ordered[i].Margin.Bottom);
- if (contentPresenter.Tag == null)
- {
- LightTouchDataGridRow row = contentPresenter.FindChild<LightTouchDataGridRow>();
+ LightTouchDataGridRow row = contentPresenter.FindChild<LightTouchDataGridRow>();
- if (row != null)
- {
- contentPresenter.Tag = 1;
- row.RegisterForPreviewMouseOrTouchUp(OnRowMouseTouchUp);
- row.RegisterForPreviewMouseOrTouchDown(OnRowMouseTouchDown);
- }
+ if (row != null)
+ {
+ row.UnRegisterMouseOrTouch(OnRowMouseTouchUp);
+ row.RegisterForPreviewMouseOrTouchUp(OnRowMouseTouchUp);
+ row.UnRegisterMouseOrTouch(OnRowMouseTouchDown);
+ row.RegisterForPreviewMouseOrTouchDown(OnRowMouseTouchDown);
}
}