在文本框中显示二维字符数组中的数据 C++/CLI
我有一个二维字符数组,即 char myarray[5][5]
,我需要在表单应用程序上的一系列文本框中显示字符。这里有两个问题:
数组是由外部函数构造的,而不是公共引用类 form1 的一部分,我需要调用必须在 form1 内部定义的 display 函数才能从外部函数访问文本框.
即使我能够做到这一点,我如何在文本框中显示字符?它似乎只接受 Sytem String^ 类型的数据。
I have a 2d char array i.e. char myarray[5][5]
, I need to display the characters in a series of textboxes on the form application. There are two issues here:
The array is constructed by an external function, not a part of the public ref class form1 and i need to call the function of display which has to be defined inside form1 to access textboxes from the external function.
Even if i'm able to do that how do i display char in textboxes? It seems to accept only Sytem String^ type data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得出了以下结论(这些可能不是理想或良好的编程实践,但由于还没有人回答,我将告诉如何解决这个问题):-
Form1
访问此数据。使用
gcnew
将数据从string
转换为System::String^
I have reached the following conclusions (these might not be the ideal or good programming practices, but since no one has answered yet I'll tell how to get this through):-
Form1
.Convert data from
string
toSystem::String^
usinggcnew