本文介绍了在运行时更改单选按钮的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在使用表单设计器创建的表单(C ++/CLI .NET)上有一个单选按钮.

但是在某些情况下,我想更改其关联的文本.

只需将新字符串分配给-> Text属性不会产生任何影响.

我尝试了诸如Invalidate和Update之类的操作来重新生成控件.他们没有帮助.

I have a radio button on a form (C++/CLI .NET) created using the form designer.

But in certain circumstance I want to change its associated text.

Simply assigning the new string to the ->Text property has no impact.

I tried things like Invalidate and Update to regenerate the control. They did not help.

推荐答案

private void button1_Click(object sender, EventArgs e)
        {

            radioButton1.Text = textBox1.Text;
        }



这篇关于在运行时更改单选按钮的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 23:03