Mercurial > silverbladetech
comparison MetroWpf/MetroWpf.Services/Interfaces/IDialogService.cs @ 15:060f02cd4591
Initial commit, pre airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Mon, 12 Mar 2012 23:05:21 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
14:741981715d94 | 15:060f02cd4591 |
---|---|
1 namespace MetroWpf.Services.Interfaces | |
2 { | |
3 public interface IDialogService | |
4 { | |
5 bool ShowConfirmation(string title, string text, string extra, params ButtonExtras[] buttonExtras); | |
6 bool? ShowConfirmationWithCancel(string title, string text, string extra, params ButtonExtras[] buttonExtras); | |
7 | |
8 void ShowMessage(string title, string text, string extra, params ButtonExtras[] buttonExtras); | |
9 void ShowWarning(string title, string text, string extra, params ButtonExtras[] buttonExtras); | |
10 void ShowError(string title, string text, string extra, params ButtonExtras[] buttonExtras); | |
11 | |
12 string[] GetFileOpenPath(string title, string filter); | |
13 string GetFileSavePath(string title, string defaultExt, string filter); | |
14 } | |
15 } |