private void SetAppearance()
        {
            Form theForm = this;

            CS_Form.FitHeightToScreen(ref theForm);
            CS_Form.SetOnRightSideOfScreen(ref theForm);
            theForm = null;
        }
Beispiel #2
0
        private void SetAppearance()
        {
            this.Text = My.Application.Info.Title;

            Form theForm = this;

            CS_Form.FitHeightToScreen(ref theForm);
            CS_Form.SetOnRightSideOfScreen(ref theForm);
            theForm = null;

            labelUserName.Font     = My.Settings.UserInfo_Font;
            textboxMessageNew.Font = My.Settings.MessageNew_Font;
        }