Example #1
0
        private void TranslationEditor_UserTranslationAbout(object sender, EventArgs e)
        {
            try
            {
                // nearly impossible but dont trust anyone
                foreach (Control item in splitContainer1.Panel1.Controls)
                {
                    if (item is Controls.Custom.InviteControl)
                    {
                        return;
                    }
                }

                Controls.Custom.InviteControl ctrl = new Controls.Custom.InviteControl();
                Controls.Add(ctrl);
                ctrl.Dock = DockStyle.Fill;
                ctrl.BringToFront();
            }
            catch (Exception exception)
            {
                ErrorForm.ShowError(this, exception, ErrorCategory.NonCritical, CurrentLanguageID);
            }
        }
Example #2
0
        private void TranslationEditor_UserTranslationAbout(object sender, EventArgs e)
        {
            try
            {
                // nearly impossible but dont trust anyone
                foreach (Control item in splitContainer1.Panel1.Controls)
                    if (item is Controls.Custom.InviteControl)
                        return;

                Controls.Custom.InviteControl ctrl = new Controls.Custom.InviteControl();
                Controls.Add(ctrl);
                ctrl.Dock = DockStyle.Fill;
                ctrl.BringToFront();

            }
            catch (Exception exception)
            {
                ErrorForm.ShowError(this, exception, ErrorCategory.NonCritical, CurrentLanguageID);
            }
        }