diff options
| author | Michael <[email protected]> | 2017-01-08 09:57:10 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-01-08 09:57:10 -0500 |
| commit | f30dcf5ef41d54c588d7b42c48be8d941abba72e (patch) | |
| tree | 7705f99b965673b1c034ac2b1c56e65072c827df /ShiftOS.Wpf/Applications/Infobox.xaml.cs | |
| parent | 69dfad54724d4176dfce238a8d7e73970e6eef24 (diff) | |
| download | shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.gz shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.tar.bz2 shiftos_thereturn-f30dcf5ef41d54c588d7b42c48be8d941abba72e.zip | |
Initial upload
Diffstat (limited to 'ShiftOS.Wpf/Applications/Infobox.xaml.cs')
| -rw-r--r-- | ShiftOS.Wpf/Applications/Infobox.xaml.cs | 63 |
1 files changed, 63 insertions, 0 deletions
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 +{ + /// <summary> + /// Interaction logic for Infobox.xaml + /// </summary> + 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); + } + } +} |
