diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-01 14:44:53 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-01 14:44:53 +0300 |
| commit | 47fad304ebc8f056f1c5ffcde037c66029fc80c9 (patch) | |
| tree | 1e321a7099a3988785485f16e677cd3eb0803a73 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common | |
| parent | 52a09ecb4ae9577f6f1bb124d246ec1c3858ec23 (diff) | |
| download | Tango-47fad304ebc8f056f1c5ffcde037c66029fc80c9.tar.gz Tango-47fad304ebc8f056f1c5ffcde037c66029fc80c9.zip | |
Added device information for ConnectResponse.
Fixed issue with razor parser.
Added report issue option to application crash.
Added DeviceInformation to MachineOperator.
Added LastHardwareConfiguration to machine operator.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs index be793ac81..1de18ac94 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioApplication/IStudioApplicationManager.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using System.Windows; using Tango.Integration.Services; namespace Tango.MachineStudio.Common.StudioApplication @@ -53,5 +54,12 @@ namespace Tango.MachineStudio.Common.StudioApplication /// Gets the machine studio application version. /// </summary> String Version { get; } + + /// <summary> + /// Notify the application manager about an external opened window. + /// When application exists. All registered windows will be closed. + /// </summary> + /// <param name="window">The window.</param> + void RegisterOpenedWindow(Window window); } } |
