void ReleaseDesignerOutlets()
        {
            if (ActionControl != null)
            {
                ActionControl.Dispose();
                ActionControl = null;
            }

            if (FullNameLabel != null)
            {
                FullNameLabel.Dispose();
                FullNameLabel = null;
            }

            if (FullNameTextBox != null)
            {
                FullNameTextBox.Dispose();
                FullNameTextBox = null;
            }

            if (InformationLabel != null)
            {
                InformationLabel.Dispose();
                InformationLabel = null;
            }

            if (MacAddressLabel != null)
            {
                MacAddressLabel.Dispose();
                MacAddressLabel = null;
            }

            if (MacAddressTextBox != null)
            {
                MacAddressTextBox.Dispose();
                MacAddressTextBox = null;
            }

            if (PasswordTextBox != null)
            {
                PasswordTextBox.Dispose();
                PasswordTextBox = null;
            }

            if (ReadyButton != null)
            {
                ReadyButton.Dispose();
                ReadyButton = null;
            }

            if (SignInView != null)
            {
                SignInView.Dispose();
                SignInView = null;
            }

            if (UsernameTextBox != null)
            {
                UsernameTextBox.Dispose();
                UsernameTextBox = null;
            }
        }