* Implemented LoginPanel component in Dashboard example * Fixed and added more sanity checking on window handles * Fixed gender detection showing some women as men git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2569 52acb1d6-8a22-11de-b505-999d5b087335
22 lines
644 B
C#
22 lines
644 B
C#
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);
|
|
|
|
string firstName = args.Length > 0 ? args[0] : String.Empty;
|
|
string lastName = args.Length > 2 ? args[1] : String.Empty;
|
|
string password = args.Length > 2 ? args[2] : String.Empty;
|
|
|
|
Application.Run(new Dashboard(firstName, lastName, password));
|
|
}
|
|
}
|
|
} |