MessageBox C# การแสดง MessageBox ด้วยภาษา C#
บทความวันที่ 24 พฤศจิกายน 2555
MessageBox คือ คำ Class ของภาษา C# มีไว้สำหรับการแสดง Message Box หรือหน้าต่างข้อความในรูปแบบต่าง ๆ ซึ่งสามารถใช้งานได้บน Windows Forms Application
ภาพรวมของ MessageBox
1. ใช้คำสั่ง MessageBox.show() ในการแสดงหน้าต่างข้อความ
2. สามารถส่งค่า Parameter ได้หลายรูปแบบสำหรับการสร้างหน้าตา และเงื่อนไขของ MessageBox
ตัวอย่างโปรแกรม
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Hello, AmplySoft",
"Title MessageBox",
MessageBoxButtons.YesNo,
MessageBoxIcon.Information);
}
}
}
ผลลัพธ์
คำค้นหา MessageBox C#, รับเขียนเว็บ, เรียนเขียนโปรแกรม, รับทำเว็บ