-3
我有C++一個控制檯應用程序在微軟的Visual Studio 2010,我想是到Windows窗體添加到項目中,並顯示出控制檯應用程序在窗體上。讓想我的控制檯應用程序代碼是控制檯應用程序的輸出在Visual Studio 2010中的C++
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
int x, y;
x=y=10;
printf("%d",x*y);
return 0;
}
親切指導我這個問題怎麼可以解決
您是第二個在過去幾個小時內提問的人。我認爲這是有幫助的意見:http://stackoverflow.com/questions/8072292/trouble-converting-a-console-application-to-a-wpf-application-in-vs-2010 – dcaswell
什麼版本的Visual Studio你有?如果您擁有較高的Professional,則可以查看MFC Microsoft基礎類。 – MathiasWestin