资源简介
读取文件夹下的note文本文件,编辑、保存
代码片段和文件信息
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;
using System.IO;
using System.Runtime.InteropServices;
namespace note
{
public partial class Form1 : Form
{
////////////设置窗口置顶///////////////
[DllImport(“user32.dll“ CharSet = CharSet.Auto)]
private static extern int SetWindowPos(IntPtr hWnd int hWndInsertAfter int x int y int Width int Height int flags);
////////////////////////////////////////
int width0 height0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
this.BackColor = Color.FromArgb(200 233 200);
label1.BackColor = Color.FromArgb(200 233 200);
width0 = this.Width;
height0 = this.Height;
this.StartPosition = FormStartPosition.Manual; //位置设为手动
this.Location = new Point(800 10); //窗口起始位置 (point)new Size(xy);
SetWindowPos(this.Handle -1 0 0 0 0 1 | 2); //设置窗口置顶,需要设置环境
//Clipboard.SetDataobject(“【bbb】“);置内容到剪切板
}
private void textBox1_KeyUp(object sender KeyEventArgs e)
{
//if (e.Modifiers == Keys.Control && e.KeyCode == Keys.A)
//if (e.KeyData == (Keys.Control | Keys.A))
//{ ((TextBox)sender).SelectAll(); label1.Text = “你按下的是Ctrl+A“; } //按下Ctrl+A,选择全部textbox的内容
if (e.Modifiers == Keys.Control && e.KeyCode == Keys.S)
{
//button1_Click(null null);有问题 //button1_Click(null new EventArgs());有问题
//button1.PerformClick();
//button1_Click(button1 e); //按下Ctrl+S,调用保存按钮功能
}
if (e.Control && e.Alt && e.KeyCode == Keys.X)
{ label1.Text = “组合键:CTRL + ALT + X “; } //不好用
if (e.KeyCode == Keys.Up)
{ label1.Text = “即向上箭头!“; }
if (e.Modifiers == (Keys.Control | Keys.Alt | Keys.Shift))
{ label1.Text = “组合键Ctrl + Alt + Shift“; }
switch (e.KeyData)
{
case (Keys.Control | Keys.A ):
((TextBox)sender).SelectAll(); label1.Text = “你按下的是Ctrl + A“; break;
case (Keys.Control | Keys.Alt | Keys.D):
label1.Text = “你按下的是组合键Ctrl + ALT + D“; break;
}
}
private void button1_Click(object sender EventArgs e) //保存
{
StreamReader streamReader = null;
StreamWriter streamWrite = null;
string txtname = @“.\note.txt“ txtname2 = @“.\note2.txt“;
try
{
if (((Button)sender).Text == “保存“)
{
//if (!File.Exists(txtname))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 160357 2017-12-09 16:27 note - 副本\note\03.ico
文件 333312 2017-12-09 16:29 note - 副本\note\bin\Debug\note - 副本.exe
文件 335360 2017-12-16 14:54 note - 副本\note\bin\Debug\note.exe
文件 28160 2017-12-16 14:54 note - 副本\note\bin\Debug\note.pdb
文件 286 2021-01-04 19:38 note - 副本\note\bin\Debug\note.txt
文件 11600 2017-12-16 14:54 note - 副本\note\bin\Debug\note.vshost.exe
文件 490 2016-07-16 19:44 note - 副本\note\bin\Debug\note.vshost.exe.manifest
文件 1 2017-12-08 09:14 note - 副本\note\ClassDiagram1.cd
文件 9110 2017-12-16 14:54 note - 副本\note\Form1.cs
文件 7477 2017-12-16 14:54 note - 副本\note\Form1.Designer.cs
文件 246655 2017-12-16 14:54 note - 副本\note\Form1.resx
文件 3859 2017-12-09 16:28 note - 副本\note\note.csproj
文件 5420 2017-12-13 17:16 note - 副本\note\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6387 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 1072 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\note.csproj.FileListAbsolute.txt
文件 975 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\note.csproj.GenerateResource.Cache
文件 9174 2017-12-13 17:27 note - 副本\note\obj\x86\Debug\note.csprojResolveAssemblyReference.cache
文件 335360 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\note.exe
文件 160923 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\note.Form1.resources
文件 28160 2017-12-16 14:54 note - 副本\note\obj\x86\Debug\note.pdb
文件 180 2017-12-09 16:28 note - 副本\note\obj\x86\Debug\note.Properties.Resources.resources
文件 485 2017-12-08 09:12 note - 副本\note\Program.cs
文件 1340 2017-12-08 09:12 note - 副本\note\Properties\AssemblyInfo.cs
文件 2860 2017-12-08 09:12 note - 副本\note\Properties\Resources.Designer.cs
文件 5612 2017-12-08 09:12 note - 副本\note\Properties\Resources.resx
文件 1091 2017-12-08 09:12 note - 副本\note\Properties\Settings.Designer.cs
文件 249 2017-12-08 09:12 note - 副本\note\Properties\Settings.settings
文件 854 2017-12-08 09:12 note - 副本\note.sln
..A..H. 19968 2017-12-16 14:54 note - 副本\note.suo
目录 0 2017-12-08 09:12 note - 副本\note\obj\x86\Debug\TempPE
............此处省略11个文件信息
相关资源
- 代码编辑器 FastColoredTextBox 智能提示补
- C#十六进制编辑器
- 原创WPF卫生相关文档编辑器
- ASP.NET(c#) 从零动态生成Word文件用程
- 炸弹人游戏(带地图编辑器浏览器.
- 科大讯飞 语音唤醒及语音听写服务
- winform做的流程图编辑器-GDI+绘图技术
- C# AE属性编辑
- C# .resources资源文件编辑和对比工具
- C# DLL 编辑工具
- C#生成PDF 读取PDF文本内容 获取PDF内图
- Winform C# C/S 程序 html 富文本编辑器
- unity编辑器源代码.zip
- C# Winform画图板
- 百度ueditor编辑器 word导入功能asp.ne
- C#图形编辑软件
- C#生成PDF 读取PDF文本内容 获取PDF内图
- c#水平矫正文本图像
- ScintillaNET文本编辑器源码
- 基于Handsontable的ASP.NET可编辑动态表格
- WPF:自定义Metro样式文件夹选择对话框
- C#svg编辑工具
- vs2010 asp.net项目中集成ckeditor和ckfind
- C#做的简易图像编辑器
- C#实现的比较牛逼的语法高亮着色编辑
- C#企业微信发送文本消息,发送图片给
- AE+C# 地图开发 编辑
- C#编写的网络间谍程序源代码(监视记
- asp.net mvc 百度UEdit富文本编辑器的使
- DCWriter电子病历编辑器
评论
共有 条评论