AppleTree iOS

메세지박스 예제 본문

C#

메세지박스 예제

사과나무 2011. 11. 23. 16:24


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 WindowsFormsApplication18
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("MessageBoxDefaultButton","Title Bar",
                            MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question,
                            MessageBoxDefaultButton.Button2);
        }
    }
}

'C#' 카테고리의 다른 글

Modal & Modeless 대화상자  (0) 2011.11.23
Comments