资源简介
通过c#实现写字板页面的编辑。并实现调整写字板中所输入的文字大小、字体、文字居中、保存文件、新建文件、打印文件等基本功能。
代码片段和文件信息
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 写字板
{
public partial class Form1 : Form
{
private bool textChange = false;
public Form1()
{
InitializeComponent();
}
private void menuItemNewFile_Click(object sender EventArgs e)
{
createNewFile();
}
private void Form1_Load(object sender EventArgs e)
{
initFortName(); // 将系统字体添加到字体列表
statusLabelFileName.Text = “NoName“; //设置状态栏文件名
statusLabelFileName.Tag = ““;
timer1.Interval = 60000; // 计时器每分钟发生一次事件
timer1.Enabled = true; // 启动计时器
this.ShowInTaskbar = false;
}
private void initFortName()
{
// 枚举计算机上安装的字体
System.Drawing.Text.InstalledFontCollection installedFontCollection = new System.Drawing.Text.InstalledFontCollection();
FontFamily[] fontFamilies;
// Get the array of FontFamily objects.
fontFamilies = installedFontCollection.Families;
int count = fontFamilies.Length;
foreach (FontFamily fontFamily in fontFamilies)
this.comBoxFontName.Items.Add(fontFamily.Name);
}
private void createNewFile()
{
richTextBox1.Clear();
}
private void openFile()
{
openFileDialog1.title = “请选择一个文件“;
openFileDialog1.Filter = “RTF格式文件(*.rtf)|*.rtf|文本文件(*.txt)|*.txt|所有文件(*.*)|*.*“; //打开文件格式
openFileDialog1.RestoreDirectory = true; // 关闭前还原当前目录
//显示对话框,直到用户关闭它。在退出对话框时如果选择了确定按钮表示有效
statusLabelMsg.Text = “请选择要编辑的文件“;
string MyFileName;
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
MyFileName = openFileDialog1.FileName; // 返回选取的文件名
//string MyShortFileName = MyFileName.Substring(MyFileName.LastIndexOf(“\\“) + 1);
if (richTextBox1.Text != ““)
{
if (MessageBox.Show(“是否保存当前文件?“ “提示“ MessageBoxButtons.YesNo) == DialogResult.Yes)
saveFile();
}
if (openFileDialog1.FilterIndex == 1)
{ // 如果是*.rtf格式,则用RichText(RTF格式文件)方式打开
richTextBox1.LoadFile(MyFileName RichTextBoxStreamType.RichText);
}
else
{ // 如果是其它格式,则用PlainText(文本文件)方式打开
richTextBox1.LoadFile(MyFileName RichTextBoxStreamType.PlainText);
}
// 将文件名显示在状态栏(不含路径)
statusLabelFileName.Text = openFileDialog1.SafeFileName;
statusLabel
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-21 20:09 写字板\
文件 869 2018-10-21 16:34 写字板.sln
目录 0 2018-10-21 16:34 写字板\bin\
目录 0 2018-10-21 19:43 写字板\bin\Debug\
文件 71168 2018-10-21 20:12 写字板\bin\Debug\写字板.exe
文件 62976 2018-10-21 20:12 写字板\bin\Debug\写字板.pdb
文件 11600 2018-10-21 21:53 写字板\bin\Debug\写字板.vshost.exe
文件 490 2018-04-12 07:35 写字板\bin\Debug\写字板.vshost.exe.manifest
文件 26522 2018-10-21 20:09 写字板\Form1.cs
文件 50177 2018-10-21 20:08 写字板\Form1.Designer.cs
文件 50829 2018-10-21 20:08 写字板\Form1.resx
文件 446 2018-10-21 20:05 写字板\Form2.cs
文件 5292 2018-10-21 20:05 写字板\Form2.Designer.cs
文件 8211 2018-10-21 20:05 写字板\Form2.resx
文件 275 2018-10-21 20:09 写字板\FrmAbout.cs
文件 22358 2018-10-13 19:26 写字板\Icon1.ico
目录 0 2018-10-21 16:34 写字板\obj\
目录 0 2018-10-21 16:34 写字板\obj\x86\
目录 0 2018-10-21 20:12 写字板\obj\x86\Debug\
文件 5420 2018-10-21 18:05 写字板\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6379 2018-10-21 21:53 写字板\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2018-10-21 16:34 写字板\obj\x86\Debug\TempPE\
文件 860 2018-10-21 21:53 写字板\obj\x86\Debug\写字板.csproj.FileListAbsolute.txt
文件 1033 2018-10-21 20:08 写字板\obj\x86\Debug\写字板.csproj.GenerateResource.Cache
文件 9214 2018-10-21 20:12 写字板\obj\x86\Debug\写字板.csprojResolveAssemblyReference.cache
文件 71168 2018-10-21 20:12 写字板\obj\x86\Debug\写字板.exe
文件 31380 2018-10-21 20:09 写字板\obj\x86\Debug\写字板.Form1.resources
文件 1970 2018-10-21 20:09 写字板\obj\x86\Debug\写字板.Form2.resources
文件 62976 2018-10-21 20:12 写字板\obj\x86\Debug\写字板.pdb
文件 180 2018-10-21 20:09 写字板\obj\x86\Debug\写字板.Properties.Resources.resources
文件 533 2018-10-21 20:12 写字板\Program.cs
............此处省略7个文件信息
- 上一篇:c#绘图板源码直线,矩形,圆形,填充
- 下一篇:随机点名程序.zip
相关资源
- c#绘图板源码直线,矩形,圆形,填充
- C#高级编程练习题目内附答案
- 基于c/s模式的简单聊天程序
- C#实现的WEB浏览器
- C#多线程刷流量
- C# 从Excel导入数据到DataGridView、SqlSe
- C#播放mp3的程
- asp.net上传大文件显示进度条百分比
- C#开发的QQ机器人,适用于任意版本
- C# socket 通信 允许发送图片,文字,文
- C# 网络编程ftpvs2012
- 使用C#开发的基于WCF和PNRP的P2P文件共
- C#引用Visa读取示波器数据
- 连锁店管理系统c#含数据库
- 104电力规约的c#部分功能实现
- c#二维码生成
- 迷宫自动生成.zip
-
C# winfrom操作xm
l_读写修改xm l及写入 - C# 角点检测
- C# 西门子PLC ppi通讯程序
- C#自动出题判分小程序
- C#实现的 路由 距离矢量算法
- C# 将照片存储到MySQL数据库
- ASP.NET 动态网站开发基础教程(C#篇)
- C# 简单反射实现winform左侧树形导航,
- WPF封装动画类,使用方便气泡动画、
- C#WinForm基于BS构架实现CS及源代码
- C#实现局域网文件传送
- c# 截取指定窗口图 根据指定坐标
- 传智播客24期最全视频
评论
共有 条评论