我正在开发一个 Windows 应用程序,其中我正在使用表格布局面板,在这个表格布局中我创建了 5 行并且是自动调整大小,现在我动态添加 4 个单选按钮,单选按钮的文本有点长但是问题是它表现得像绝对的,而不是显示全文。
我正在添加这样的单选按钮-
for (int i = 0; i < 4; i++)
{
rbtn1 = new RadioButton();
rbtn1.Name = "rbtn" + (i + 1);
rbtn1.Text = "A jogger running at 9 kmph alongside a railway track in 280 metres ahead of the engine of a 120 metres long train running at 45 kmph in the same direction. In how much time will the train pass the jogger?";//ansList[i].ToString();
rbtn1.Dock = DockStyle.Fill;
rbtn1.Font = new Font("Verdana", 10);
tableLayoutExamPanel.Controls.Add(rbtn1, 1, i + 8);
}
我从过去 10 个小时开始着手处理这个问题。
需要帮助,非常感谢。