C#对话框-字体对话框
字体对话框(FontDialog)可以帮助用户设置字体、字号、样式和颜色,使用比较简单。
打开上节的项目文件,在窗体中添加字体对话框控件,并在工具栏中添加“字体”按钮,为其编写设置字体的代码:
private void 保存SToolStripButton_Click(object sender, EventArgs e)
{
this.saveFileDialog1.Title = "我的记事本";
this.saveFileDialog1.Filter = "文本文件(*.txt)|*.txt";
this.saveFileDialog1.InitialDirectory=@"c:\";
if (this.saveFileDialog1.ShowDialog() == DialogResult.Cancel)
return;
else
{
Stream stream = this.saveFileDialog1.OpenFile();
StreamWriter sw = new StreamWriter(stream);
sw.Write(this.richTextBox1.Text);
MessageBox.Show("保存成功");
sw.Close();
}
}
编译并运行程序,打开一个文本文件,在文本框中显示其内容,也可在文本框中输入文字,运行效果。选定其中部分文字,单击“字体”按钮,打开“字体”对话框
选择字体、字形,大小颜色等,单击确定,窗体中选定的字符颜色将变为对话框选定的颜色,所有的字体、大小,字形都会变为字体对话框设置的值。
说明:RichTextBox控件中的SelectionColor和SelectionFont属性表示用户选择的颜色和字体。