Show All
Dialog Boxes Using C#.net
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
WindowsFormsApplication6
{
public partial class Form1 : Form
{
public
Form1()
{
InitializeComponent();
}
private
void Form1_Load(object
sender, EventArgs e)
{
}
private
void button4_Click(object
sender, EventArgs e)
{
ColorDialog
colorDlg = new ColorDialog();
if
(colorDlg.ShowDialog() == DialogResult.OK)
{
label1.BackColor =
colorDlg.Color;
// label1.ForeColor = colorDlg.Color;
}
}
private
void button3_Click(object
sender, EventArgs e)
{
SaveFileDialog
sfd = new SaveFileDialog();
if
(sfd.ShowDialog() == DialogResult.OK)
{
label1.Text = sfd.FileName;
}
}
private
void button2_Click(object
sender, EventArgs e)
{
OpenFileDialog
ofd = new OpenFileDialog();
if
(ofd.ShowDialog() == DialogResult.OK)
{
label1.Text =
ofd.FileName;
}
}
private
void button1_Click(object
sender, EventArgs e)
{
FolderBrowserDialog
dialog = new FolderBrowserDialog();
dialog.RootFolder = Environment.SpecialFolder.Desktop;
dialog.SelectedPath = @"C:\Program Files";
if
(dialog.ShowDialog() == DialogResult.OK)
{
label1.Text=dialog.SelectedPath;
}
}
private
void button5_Click(object
sender, EventArgs e)
{
FontDialog
fd = new FontDialog();
if
(fd.ShowDialog() == DialogResult.OK)
{
//label1.Text
= fd.Font.Name;
label1.Font = fd.Font;
}
}
private
void button6_Click(object
sender, EventArgs e)
{
PrintDialog
pd = new PrintDialog();
if
(pd.ShowDialog() == DialogResult.OK)
{
label1.Text =
pd.PrintToFile.ToString();
}
}
}
}
No comments:
Post a Comment