I want to use RadLabel _lblPreview as an information display control. When the text display width is less than the width of the Panel, I hope the content is displayed in the middle of the Panel.
_lblPreview.Height = 100;
_lblPreview.Font = new Font(fontName, size, FontStyle.Regular);
lblPreview.TextAlignment = ContentAlignment.MiddleCenter;
_lblPreview.Text = "样本文本 abc123.,";
_lblPreview.Dock = DockStyle.Top;
_lblPreview.AutoSize = true,
When gradually increasing the font size, the display is correct. However, when AutoSize is set to false, after the font size reaches 46, the displayed content gets truncated, and when it reaches 52, there is no display at all. What is the reason?