Example #1
0
        private void BtnDisplayAdvancedOptions_LeftClick(object sender, EventArgs e)
        {
            Name = "GameCreationWindow_Advanced";

            ClientRectangle = new Rectangle(X, Y,
                                            Width, 420);

            btnCreateGame.ClientRectangle = new Rectangle(btnCreateGame.X,
                                                          Height - 29, btnCreateGame.Width,
                                                          btnCreateGame.Height);

            btnCancel.ClientRectangle = new Rectangle(btnCancel.X,
                                                      Height - 29, btnCancel.Width,
                                                      btnCancel.Height);

            btnLoadMPGame.ClientRectangle = new Rectangle(btnLoadMPGame.X,
                                                          Height - 29, btnLoadMPGame.Width,
                                                          btnLoadMPGame.Height);

            lblTunnelServer.Enable();
            lbTunnelList.Enable();
            btnDisplayAdvancedOptions.Disable();

            SetAttributesFromIni();

            CenterOnParent();
            // TODO fix this hack in Rampastring.XNAUI, refreshes scrollbar position on screen
            lbTunnelList.ClientRectangle = lbTunnelList.ClientRectangle;
        }
Example #2
0
        private void BtnDisplayAdvancedOptions_LeftClick(object sender, EventArgs e)
        {
            Name = "GameCreationWindow_Advanced";

            ClientRectangle = new Rectangle(X, Y,
                                            Width, 420);

            btnCreateGame.ClientRectangle = new Rectangle(btnCreateGame.X,
                                                          Height - 29, btnCreateGame.Width,
                                                          btnCreateGame.Height);

            btnCancel.ClientRectangle = new Rectangle(btnCancel.X,
                                                      Height - 29, btnCancel.Width,
                                                      btnCancel.Height);

            btnLoadMPGame.ClientRectangle = new Rectangle(btnLoadMPGame.X,
                                                          Height - 29, btnLoadMPGame.Width,
                                                          btnLoadMPGame.Height);

            lblTunnelServer.Enable();
            lbTunnelList.Enable();
            btnDisplayAdvancedOptions.Disable();

            SetAttributesFromIni();

            CenterOnParent();
        }
Example #3
0
        private void BtnDisplayAdvancedOptions_LeftClick(object sender, EventArgs e)
        {
            Name = "GameCreationWindow_Advanced";

            btnCreateGame.ClientRectangle = new Rectangle(btnCreateGame.X,
                                                          lbTunnelList.Bottom + UIDesignConstants.CONTROL_VERTICAL_MARGIN * 3,
                                                          btnCreateGame.Width, btnCreateGame.Height);

            btnCancel.ClientRectangle = new Rectangle(btnCancel.X,
                                                      btnCreateGame.Y, btnCancel.Width, btnCancel.Height);

            btnLoadMPGame.ClientRectangle = new Rectangle(btnLoadMPGame.X,
                                                          btnCreateGame.Y, btnLoadMPGame.Width, btnLoadMPGame.Height);

            Height = btnCreateGame.Bottom + UIDesignConstants.CONTROL_VERTICAL_MARGIN + UIDesignConstants.EMPTY_SPACE_BOTTOM;

            lblTunnelServer.Enable();
            lbTunnelList.Enable();
            btnDisplayAdvancedOptions.Disable();

            SetAttributesFromIni();

            CenterOnParent();
        }