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/Applications/Infobox.xaml.cs | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 ShiftOS.Wpf/Applications/Infobox.xaml.cs (limited to 'ShiftOS.Wpf/Applications/Infobox.xaml.cs') diff --git a/ShiftOS.Wpf/Applications/Infobox.xaml.cs b/ShiftOS.Wpf/Applications/Infobox.xaml.cs new file mode 100644 index 0000000..b328439 --- /dev/null +++ b/ShiftOS.Wpf/Applications/Infobox.xaml.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; +using ShiftOS.Engine; + +namespace ShiftOS.Wpf.Applications +{ + /// + /// Interaction logic for Infobox.xaml + /// + public partial class Infobox : UserControl, IShiftOSWindow + { + public Infobox(string title, string msg) + { + InitializeComponent(); + Title = title; + Message = msg; + } + + public static void Show(string title, string msg) + { + ShiftOS.Engine.Infobox.Show(title, msg); + } + + public string Title { get; set; } + public string Message { get; set; } + + public void OnLoad() + { + this.SetTitle(Title); + txtmessage.Text = Message; + } + + public void OnSkinLoad() + { + } + + public bool OnUnload() + { + return true; + } + + public void OnUpgrade() + { + } + + private void btnokay_Click(object sender, RoutedEventArgs e) + { + AppearanceManager.Close(this); + } + } +} -- cgit v1.2.3