00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 using System.Windows;
00005
00006 namespace Microsoft.MCS.Projects.MopsBrowser
00007 {
00008 class Global
00009 {
00010 public static MessageBoxResult ShowMessageBox(Window owner,
00011 string messageKey,
00012 MessageBoxButton buttons,
00013 MessageBoxImage image,
00014 MessageBoxOptions options)
00015 {
00016 return MessageBox.Show(owner,
00017 Application.Current.FindResource(messageKey).ToString(),
00018 Application.Current.FindResource("appTitle").ToString(),
00019 buttons,
00020 image,
00021 MessageBoxResult.Cancel,
00022 options);
00023 }
00024 }
00025 }