예제 #1
0
        private void _displayAboutBoxDisplayDetailed()
        {
            _currentDisplay = AboutBoxDisplay.Detailed;

            //Set More Information button Text
            aboutInfo.moreInfoButton.Text = GENERAL_INFORMATION;

            //Setup InformationPanel
            aboutInfo.infoPanel.Controls.Clear();
            aboutInfo.infoPanel.Controls.Add(DetailedInformationControl);
        }
예제 #2
0
        private void _displayAboutBoxDisplayGeneral()
        {
            _currentDisplay = AboutBoxDisplay.General;

            //Set More Information button Text
            aboutInfo.moreInfoButton.Text = DETAILED_INFORMATION;

            //Setup InformationPanel
            aboutInfo.infoPanel.Controls.Clear();
            aboutInfo.infoPanel.Controls.Add(GeneralInformationControl);
        }