blob: e14df21ba99422611f5cf1faa689c44afbff74bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using MaterialDesignThemes.Wpf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.MachineStudio.Common.Notifications
{
public interface INotificationProvider
{
bool ShowDialog<T>(PackIconKind icon, String title, object context) where T : FrameworkElement;
bool ShowDialog(PackIconKind icon, String title, FrameworkElement content, object context);
}
}
|