Exemplo n.º 1
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            // Create the startup window

            /*
             * MainWindow wnd = new MainWindow();
             * wnd.Title = "Main";
             * wnd.Show();
             */

            CharacterScreen cwnd = new CharacterScreen();

            cwnd.Title = "Character";
            cwnd.Show();
        }
Exemplo n.º 2
0
 public Selection(CharacterScreen screen, SelectType action)
 {
     InitializeComponent();
     parent = screen;
     Action = action;
 }