diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-12-17 15:18:56 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-12-17 15:18:56 +0200 |
| commit | 2d148c9f0de61bc09fbab89341dc05b82e45f78a (patch) | |
| tree | 459d49f94ce69a894630bed01e78089edcfa7076 /Software/Visual_Studio/Tango.Touch | |
| parent | b98fb311b28c8e36b7b44775c641083d501ef92a (diff) | |
| download | Tango-2d148c9f0de61bc09fbab89341dc05b82e45f78a.tar.gz Tango-2d148c9f0de61bc09fbab89341dc05b82e45f78a.zip | |
Implemented PPC DataGrid Tech style.
Changed auto update icon.
Changed Backup and Restore module name.
Implemented Updates & Synchronization Details View.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Controls/TouchSimpleDataGrid.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchSimpleDataGrid.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchSimpleDataGrid.cs index 7cc2f3d2a..c0b455a55 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchSimpleDataGrid.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchSimpleDataGrid.cs @@ -14,5 +14,15 @@ namespace Tango.Touch.Controls { DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchSimpleDataGrid), new FrameworkPropertyMetadata(typeof(TouchSimpleDataGrid))); } + + public TouchSimpleDataGrid() + { + SelectionChanged += TouchSimpleDataGrid_SelectionChanged; + } + + private void TouchSimpleDataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + SelectedItem = null; + } } } |
