我从这样的窗口打开单声道c#中的另一个窗口:
窗口1:
// Ring_Buffer_Class.cpp
#include <iostream>
#include "ring.h"
using namespace std;
int main()
{
ring<string> textring(3);
textring.add("one");
textring.add("two");
textring.add("three");
textring.add("four");
// C++ 98
for(ring<string>::iterator it = textring.begin(); it != textring.end(); it++)
{
cout << *it << endl;
}
cout << endl;
// C++11
for(string value : textring)
{
cout << value << endl;
}
return 0;
}
在我的第二个窗口中,我在主函数中改变了一点:
this.Destroy();
NewWindow nw = new NewWindow();
nw.Show();
从现在开始,窗口2的显示方式有三种: - 一切顺利,窗户全屏 - 窗口出现但表格都小一些 - 窗口没有显示任何内容,它显示为空白空格
有人回答我的问题或您是否需要有关我的项目的更多信息?在某种原因,窗口1是构建的,并且在它重定向到新窗口之后,它是否可以快速运行?