blob: 6cc186719dba2159a9e654c757223b03ea424b24 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
using System;
using System.Windows;
namespace MaterialDesignThemes.Wpf
{
public class DialogClosingEventArgs : RoutedEventArgs
{
public DialogClosingEventArgs(DialogSession session, object parameter)
{
if (session == null) throw new ArgumentNullException(nameof(session));
Session = session;
Parameter = parameter;
}
public DialogClosingEventArgs(DialogSession session, object parameter, RoutedEvent routedEvent) : base(routedEvent)
{
if (session == null) throw new ArgumentNullException(nameof(session));
Session = session;
Parameter = parameter;
}
public DialogClosingEventArgs(DialogSession session, object parameter, RoutedEvent routedEvent, object source) : base(routedEvent, source)
{
if (session == null) throw new ArgumentNullException(nameof(session));
Session = session;
Parameter = parameter;
}
/// <summary>
/// Cancel the close.
/// </summary>
public void Cancel()
{
IsCancelled = true;
}
/// <summary>
/// Indicates if the close has already been cancelled.
/// </summary>
public bool IsCancelled { get; private set; }
/// <summary>
/// Gets the paramter originally provided to <see cref="DialogHost.CloseDialogCommand"/>/
/// </summary>
public object Parameter { get; }
/// <summary>
/// Allows interation with the current dialog session.
/// </summary>
public DialogSession Session { get; }
/// <summary>
/// Gets the <see cref="DialogHost.DialogContent"/> which is currently displayed, so this could be a view model or a UI element.
/// </summary>
[Obsolete("Prefer Session.Content")]
public object Content => Session.Content;
}
}
|