การสร้าง Dialog Confirm เพื่อยืนยันการดำเนินงาน ภาษา C#
บทความวันที่ 19 มกราคม 2556
Dialog Confirm มีไว้สำหรับการสร้างเงื่อนไขการยืนยืนการดำเนินการของผู้ใช้ เช่น การยืนยันการออกจากระบบ หรือการยืนยันการลบข้อมูลสินค้า โดยสามารถสร้าง Dialog Confirm ได้จาก Method MessageBox
ภาพรวมของการสร้าง Dialog Confirm เพื่อยืนยันการดำเนินงาน ภาษา C#
1. สร้าง Dialog Confirm ผ่าน Method MessageBox โดยใช้งานร่วมกับคำสั่ง If
2. กำหนดเงื่อนไขการดำเนินงานผ่านทาง if - else และ DialogResult
ตัวอย่างโปรแกรม
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 WindowsFormsApplication5
{
public partial class Test : Form
{
public Test()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Confirm Exit Program ??", "Dialog Box Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
{
MessageBox.Show("You Click OK");
Application.Exit();
}
else
{
MessageBox.Show("You Click Cancel");
}
}
}
}
ผลลัพธ์
คำค้นหา การสร้าง Dialog Confirm เพื่อยืนยันการดำเนินงาน ภาษา C#, รับเขียนเว็บ, รับทำเว็บ, เรียนเขียนโปรแกรม