From 81ed3c21ad7624a383a721c9509f671bd6f5ac23 Mon Sep 17 00:00:00 2001 From: Ian C Date: Mon, 16 May 2005 00:31:10 +0000 Subject: Added adjustements and drop shadow --- Util.cs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'Util.cs') diff --git a/Util.cs b/Util.cs index f7b3bab..c7a6b0e 100644 --- a/Util.cs +++ b/Util.cs @@ -31,26 +31,21 @@ namespace BitmapFontEd { public static bool YesNo(string s) { - return MessageBox.Show(s,"Question", + return MessageBox.Show(s,"Bitmap Font Editor", MessageBoxButtons.YesNo, MessageBoxIcon.Question)==DialogResult.Yes; } public static void Message(string s) { - MessageBox.Show(s,"Message",MessageBoxButtons.OK,MessageBoxIcon.Information); + MessageBox.Show(s,"Bitmap Font Editor",MessageBoxButtons.OK,MessageBoxIcon.Information); } public static void Error(string s) { - MessageBox.Show(s,"ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error); + MessageBox.Show(s,"Bitmap Font Editor - ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error); } - public static void Error(string file, string s) - { - MessageBox.Show(file+"\n\n"+s,"File Error",MessageBoxButtons.OK,MessageBoxIcon.Error); - } - public static void About() { MessageBox.Show(m_about,"About Bitmap Font Editor", -- cgit v1.2.3