Habanero.Faces.Win.LabelWin.LabelWin C# (CSharp) Method

LabelWin() public method

public LabelWin ( ) : System
return System
        public LabelWin()
        {
            this.FontChanged += (sender, e) =>
                {
                    this.Width = this.PreferredWidth;
                    this.Height = this.PreferredHeight;
                };
            this.TextChanged += (sender, e) =>
                {
                    this.Width = this.PreferredWidth;
                    this.Height = this.PreferredHeight;
                };
            this.ObserveGlobalUIHints();
        }