0

我想将更多来自不同来源的字符串添加在一起,但我似乎没有工作......
我的代码

int num = 0;
string s = std::to_string(num);
this->richTextBox1->Text = "Copying files... (" + s + "%)"; //this doesn't work

PS:如何添加代码 -num = num + 1

4

1 回答 1

0

它不起作用是因为该Text属性不是std::string.

您可以使用以下方法将结果转换std::string为:const char*c_str()

this->richTextBox1->Text = ("Copying files... (" + s + "%)").c_str();
于 2013-01-30T12:59:15.800 回答