我们的应用程序确实很复杂,主要显示一些图形。 在创建单元测试期间,我们需要一种查看“准备数据”的方法。
为此,我们创建了一个能够绘制数据的“ Windows窗体”。
问题在于,当我们尝试显示窗口时,什么也没有出现!
这是我尝试过的
public void Draw()
{
Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(this);
this.BringToFront();
this.Focus();
this.ShowDialog();
}
您是否有任何想法在单元测试项目的上下文中显示这样的窗口?