在主控台應用程式顯示 MessageBox
一般的 Windows Forms 應用程式,可以很容易的使用 MessageBox,但假如想要在主控台應用程式,使用 MessageBox 該如何處理。
其實 MessageBox,組件是來自 System.Windows.Forms.dll,所以我們只要加入 System.Windows.Forms.dll 就可以了
先開啟新專案,在方案總管中,方案下的參考,滑鼠右鍵,點選加入參考(R)
選擇 System.Windows.Forms 後,按下確認,之後就可以撰寫程式使用 MessageBox
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
MessageBox.Show("Show Message");
}
}
}