示例#1
0
    static void Main()
    {
        ReversiForm scherm;

        scherm = new ReversiForm();
        Application.Run(scherm);
    }
示例#2
0
    public void openSettings(object obj, EventArgs pea)
    {
        ReversiForm screen = new ReversiForm();

        Application.Run(screen);
    }
示例#3
0
 static void Main()
 {
     ReversiForm scherm;
     scherm = new ReversiForm();
     Application.Run(scherm);
 }
示例#4
0
    static void Main()
    {
        ReversiForm screen = new ReversiForm();

        Application.Run(screen);
    }