diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-07 13:33:24 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-07 13:33:24 +0200 |
| commit | 6ed849ee54a2f30315a622242f38dce92a309991 (patch) | |
| tree | d355caf909d287adcdd89c5afe6b1f1bdd2ba748 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs | |
| parent | 8d2dc68fdddc51bc24ac6f41feb97460a7d27372 (diff) | |
| download | Tango-6ed849ee54a2f30315a622242f38dce92a309991.tar.gz Tango-6ed849ee54a2f30315a622242f38dce92a309991.zip | |
Added Application Firmware Versions To Machine Designer.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs index f38c8f8d6..44ce75c12 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs @@ -122,6 +122,10 @@ namespace Tango.MachineStudio.MachineDesigner.Views { _vm.DropApplicationOsVersion(e.Draggable.DataContext as ApplicationOsVersion); } + else if (e.Draggable.DataContext is ApplicationFirmwareVersion) + { + _vm.DropApplicationFirmwareVersion(e.Draggable.DataContext as ApplicationFirmwareVersion); + } } private void OnEmbeddedDrop(object sender, DropEventArgs e) |
