blob: 13844e6dec3d53c219cccf511e575388b66963a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Procedures
{
/// <summary>
/// Represents a procedure window dialog controller.
/// </summary>
/// <seealso cref="Tango.FSE.Procedures.IDialogController" />
public interface IDialogWindowController : IDialogController
{
/// <summary>
/// Hides the dialog (Use Show() to make it visible again).
/// </summary>
void Hide();
}
}
|