blob: 1fd5625900c6b30d7f702d69484481531aa97f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Common
{
public interface IStudioModuleViewVM
{
/// <summary>
/// Called when the module .
/// </summary>
void OnNavigatedTo();
/// <summary>
/// Called when [navigated from].
/// </summary>
void OnNavigatedFrom();
/// <summary>
/// Called when [shutting down].
/// </summary>
void OnShuttingDown();
/// <summary>
/// Called when the application is shutting down.
/// </summary>
/// <returns></returns>
Task<bool> OnShutdownRequest();
}
}
|