Esempio n. 1
0
    /// <summary>
    /// Pokazuje tor lotu niewypa³u petardy powietrznej.
    /// </summary>
    public static void Main()
    {
        ShowFlight sf = new ShowFlight();
        GroupBox   gb = CreateGroupBox("Tor lotu", sf);
        Form       f  = new Form();

        f.DockPadding.All = 10;
        f.Text            = "Tor lotu niewypa³ów";
        f.Font            = UI.NORMAL.Font;
        f.Controls.Add(gb);

        Application.Run(f);
    }
Esempio n. 2
0
    /// <summary>
    /// Show the flight path of a nonexploding aerial shell.
    /// </summary>
    public static void Main()
    {
        ShowFlight sf = new ShowFlight();
        GroupBox   gb = CreateGroupBox("Flight Path", sf);
        Form       f  = new Form();

        f.DockPadding.All = 10;
        f.Text            = "Flight Path for Shell Duds";
        f.Font            = UI.NORMAL.Font;
        f.Controls.Add(gb);

        Application.Run(f);
    }