LIBOMV-344 OpenMetaverse.GUI: Added Dashboard project to demonstrate GUI classes

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2067 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
2008-08-05 06:43:40 +00:00
parent 2d3b4be947
commit d36b3d25ae
5 changed files with 520 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Dashboard
{
static class Program
{
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args.Length > 2) Application.Run(new Dashboard(args[0], args[1], args[2]));
else MessageBox.Show("Usage: dashboard.exe <firstName> <lastName> <password>", "Dashboard", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
}
}
}