monodev
[mcloud.git] / GtkUtil / MessageBox.cs
1 using System;
2 using Gtk;
3
4 namespace GtkUtil
5 {
6         public class MessageBox
7         {
8                 public static void Show(string Msg)
9                 {
10                         MessageDialog md = new MessageDialog (null, DialogFlags.Modal, MessageType.Info, ButtonsType.Ok, Msg);
11                         md.Run ();
12                         md.Destroy();
13                 }
14         }
15 }
16