From f30dcf5ef41d54c588d7b42c48be8d941abba72e Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Jan 2017 09:57:10 -0500 Subject: Initial upload --- ShiftOS.Wpf/WpfInfoboxFrontend.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ShiftOS.Wpf/WpfInfoboxFrontend.cs (limited to 'ShiftOS.Wpf/WpfInfoboxFrontend.cs') diff --git a/ShiftOS.Wpf/WpfInfoboxFrontend.cs b/ShiftOS.Wpf/WpfInfoboxFrontend.cs new file mode 100644 index 0000000..c40c614 --- /dev/null +++ b/ShiftOS.Wpf/WpfInfoboxFrontend.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using ShiftOS.Engine; + +namespace ShiftOS.Wpf +{ + class WpfInfoboxFrontend : IInfobox + { + public void Open(string title, string msg) + { + var inf = new Applications.Infobox(title, msg); + AppearanceManager.SetupDialog(inf); + } + } +} -- cgit v1.2.3