Dialogs Open in Windows C# Application

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1429
Dialogs Open in Windows C# Application
================================

private void OpenFile_Click(object sender, EventArgs e)
{
openFileDialog1.ShowDialog();
}

private void Print_Click(object sender, EventArgs e)
{
printDialog1.ShowDialog();
}

private void ColorDialog_Click(object sender, EventArgs e)
{

colorDialog1.ShowDialog();
}

Comments or Responses

Login to post response