diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-31 15:59:02 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-31 15:59:02 +0200 |
| commit | e86fb1e3f847ee5646fe40b52bcf478bc9ce4b64 (patch) | |
| tree | 8faab087dbc6e13d5c83960ff344a77825dc21b7 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs | |
| parent | 650af0554b902837f8e146d690aca24e4f60ec29 (diff) | |
| download | Tango-e86fb1e3f847ee5646fe40b52bcf478bc9ce4b64.tar.gz Tango-e86fb1e3f847ee5646fe40b52bcf478bc9ce4b64.zip | |
Added Trigger for machine delete to erase configuration & IDS Packs also!
Implemented Machine creation dialog in machine designer.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs new file mode 100644 index 000000000..3901309a9 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineCreationDialog.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.MachineStudio.MachineDesigner.Views +{ + /// <summary> + /// Interaction logic for MachineCreationDialog.xaml + /// </summary> + public partial class MachineCreationDialog : UserControl + { + public MachineCreationDialog() + { + InitializeComponent(); + } + } +} |
