我可能有一个新手问题,但我大约在一周前开始了关于c#的课程,我们正在使用Visual studio,所以每次我们打开一个新项目(控制台应用程序)时,都会显示一个包含代码的页面:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
}
}
}
我目前正在大学里学习C++入门课程。这是一个非常简单的作业,我不得不用3种不同的方法来编程输出"1 2 3 4“。在我目前的技能之前,我如何才能将可视化界面添加到我刚刚编写的程序中?我的意思是,我想改变颜色,添加按钮或图片或其他任何东西。这有可能吗?
//Jaehyuk Oh
//Professor Kan, Shaobai
// 2/9/2014
// HWK. 2.17
// (Printing) Write a program that prints the numbers 1 to 4 on the same line with each pair of adjacen