简单的winform编辑器

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;

namespace winformDemo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            //让textBox2隐藏
            this.textBox2.Visible = false;
            //让dataGridView1表中的最后一行空值隐藏掉
            this.dataGridView1.AllowUserToAddRows = false;
        }
        SqlConnection con = new SqlConnection();
        SqlCommand com = new SqlCommand();
        OpenFileDialog open = new OpenFileDialog();
        /// <summary>
        /// 行
        /// </summary>
        string ClickRow = "";
        /// <summary>
        /// 列
        /// </summary>
        string ClickCells = "";
        /// <summary>
        /// 行和列相加的字符串
        /// </summary>

string SqlLanding = "server=.;uid=sa;pwd=123456789;database=myfirstDemo";
        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            //获取正在点击的行和列。
            ClickRow = this.dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
            ClickCells = this.dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
        }

private void Form1_Load(object sender, EventArgs e)
        {
            SelectInfo();
        }
        public void SelectInfo()
        {
            //断开式链接查看数据库数据
            con.ConnectionString = SqlLanding;
            com.CommandText = "select Name as 文件名,TxtLuJing as 文件路径 from TxtBianJiQi";
            com.Connection = con;
            DataSet ds = new DataSet();
            SqlDataAdapter sda = new SqlDataAdapter(com);
            sda.Fill(ds);
            this.dataGridView1.DataSource = ds.Tables[0];
        }
        private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string Filepath = ClickCells + ClickRow;
            this.textBox2.Visible = true;
            try
            {
                //只读流;
                FileStream fss = new FileStream(Filepath, FileMode.OpenOrCreate, FileAccess.Read);
                StreamReader sww = new StreamReader(fss, Encoding.Default);
                textBox2.Text = sww.ReadToEnd();
                sww.Close();
                fss.Close();
            }
            catch (Exception ex)
            {
                //如果没有选择路径提示出一句话;
                MessageBox.Show("查看路径错误:" + ex.Message);
            }
        }

private void 保存ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string Filepath = ClickCells + ClickRow;
            try
            {
                //只写流;
                FileStream fss = new FileStream(Filepath, FileMode.Create, FileAccess.Write);
                StreamWriter sww = new StreamWriter(fss, Encoding.Default);
                sww.Write(textBox2.Text);
                sww.Close();
                fss.Close();
                MessageBox.Show("保存成功!");
            }
            catch (Exception ex)
            {
                //如果没有选择路径提示出一句话;
                MessageBox.Show("保存路径错误:" + ex.Message);
            }
            this.textBox2.Visible = false;
        }

private void 新建ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.textBox2.Text = "";
            string localFilePath = "";
            string fileNameExt = "";
            string flie = "";
            SaveFileDialog saveFileDialog = new SaveFileDialog();
            //打开默认的文件目录
            saveFileDialog.InitialDirectory = "D:\\\\Text\\";
            //文件后缀名
            saveFileDialog.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*";
            saveFileDialog.FilterIndex = 2;
            string LuJing = saveFileDialog.InitialDirectory;
            if (saveFileDialog.ShowDialog() == DialogResult.OK)
            {
                flie = saveFileDialog.FileName;
                //文件目录名
                localFilePath = saveFileDialog.FileName.ToString();
                //截取文件名字
                fileNameExt = localFilePath.Substring(localFilePath.LastIndexOf("\\") + 1);
            }
            string sql = "select name from TxtBianJiQi";
            SqlCommand co = new SqlCommand(sql, con);
            SqlDataAdapter da = new SqlDataAdapter(co);
            DataSet dss = new DataSet();
            da.Fill(dss);
            //循环判断传入的表中name
            for (int i = 0; i < dss.Tables[0].Rows.Count; i++)
            {
                //定一个变量去接获取出来name
                string ss = dss.Tables[0].Rows[i][0].ToString();
                //判断对话框里输入的值是否与查出来的name相同
                if (fileNameExt == ss)
                {
                    MessageBox.Show("文件已更改!");
                    return;
                }
            }
            try
            {
                //只写流
                FileStream fs = new FileStream(flie, FileMode.Create, FileAccess.Write);
                StreamWriter sw = new StreamWriter(fs, Encoding.Default);//对话框另存为。
                sw.Write(textBox2.Text);
                sw.Flush();
                fs.Close();
                con.ConnectionString = SqlLanding;
                //往数据库添加 文件名和路径名 sql语句
                com.CommandText = String.Format("insert into TxtBianJiQi(Name,TxtLuJing)values(‘{0}‘,‘{1}‘)", fileNameExt, LuJing);
                com.Connection = con;
                con.Open();
                int insertInto = Convert.ToInt32(com.ExecuteScalar());
                if (insertInto > 0)
                {
                    MessageBox.Show("操作失败!请重试。");
                }
                else
                {
                    MessageBox.Show("添加成功!");
                    this.textBox2.Visible = false;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("添加日志失败:" + ex.Message);
            }
            con.Close();
            SelectInfo();
        }

private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            con.ConnectionString = SqlLanding;
            //从数据库删除正在点击的文件名
            com.CommandText = String.Format("delete from TxtBianJiQi where Name=‘{0}‘", ClickRow);
            com.Connection = con;
            con.Open();
            DialogResult dr = MessageBox.Show("确认删除?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
            if (dr == DialogResult.OK)
            {
                int insertInto = Convert.ToInt32(com.ExecuteScalar());
                if (insertInto > 0)
                {
                    MessageBox.Show("操作失误!!");
                }
                else
                {
                    //File.Delete(ClickCells + ClickRow);删除Windows里的文件,括号里是要删除文档的路径。
                    File.Delete(ClickCells + ClickRow);
                    MessageBox.Show("删除成功!");
                }
            }
            con.Close();
            SelectInfo();
        }

private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

}
}
就是写了一个挺简单的在winform里进行填写文本,里面用到的ADO.NET来链接数据库,在新建文本的时候需要写入.txt后缀名,打开或者是删除的时候需要先点击一下文本名。 写的不足请见谅!

时间: 2024-10-09 22:21:33

简单的winform编辑器的相关文章

【Qt5开发及实例】12、实现一个简单的文本编辑器1

showwidget.h /** * 书本:[Qt5开发及实例] * 功能:实现一个简单的文本编辑器 * 文件:showwidget.h * 时间:2015年1月18日10:03:21 * 作者:cutter_point */ #ifndef SHOWWIDGET_H #define SHOWWIDGET_H #include <QWidget> #include <QLabel> #include <QTextEdit> #include <QImage>

简单的文本编辑器

#!/usr/bin/env python import wx class MainWindow(wx.Frame): def __init__(self, parent, title): wx.Frame.__init__(self, parent, title=title, size=(200,100)) self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE) self.CreateStatusBar() # A Statusbar i

【Qt5开发及实例】16、实现一个简单的文本编辑器(over)

实现一个简单的文本编辑器 其他具体的代码基础看前面:http://blog.csdn.net/cutter_point/article/details/42839071 1.功能 这个程序又添加了文本编辑功能,什么加粗,斜体,下划线,字体设置,字号设置,文字排版,段落对齐功能. 2.代码全展示 头文件 showwidget.h /** * 书本:[Qt5开发及实例] * 功能:实现一个简单的文本编辑器 * 文件:showwidget.h * 时间:2015年1月18日10:03:21 * 作者:

SimpleMarkdown - 一款简单的Markdown编辑器

源码地址: https://github.com/zhuangZhou/SimpleMarkdown 作者网站:http://hawkzz.com 简介 这是一款基于NodeJs开发的简单的Markdown编辑器,其UI是仿照简书的Markdown编辑器:主要功能:实时解析,实时保存,实时预览,全屏等 预览 技术栈 NodeJs Express Swig Marked highJs Jquery 实时解析.保存 经常使用简书的Markdown编辑器书写博客,它的有点很明显,一是,可以实时保存,二

原生JS实现简单富文本编辑器2

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" con

Python-tkinter实现简单的文本编辑器

利用tkinter实现简单的文本编辑器.创建一个简单的文本编辑器.可以用读文件的方式在一个文本域里显示一些文字供用户编辑. 当用户退出程序时(通过 QUIT 按钮)会询问用户是否保存所作的修改. (直接上代码~有注释~) 1 # -*- encoding: utf-8 -*- 2 ''' 3 @File : 简单文本编辑器.py 4 @Time : 2020/04/05 11:35:39 5 @Author : Konggu 6 @Desc : None 7 ''' 8 import os 9

Tkinter制作简单的python编辑器

想要制作简单的python脚本编辑器,其中文字输入代码部分使用Tkinter中的Text控件即可实现. 但是问题是,如何实现高亮呢?参考python自带的编辑器:python27/vidle文件夹中的代码. 实现效果为: 其中主要思路就是在Text中每输入一行代码,都通过正则匹配,查找是不是需要高亮效果,道理很简单,但是问题就是在使用Text控件的时候,通过光标输入的时候,似乎不能找到光标对应的位置,所以,人家的编辑器代码中,提供了WidgetRedirector.py文件,其作用主要是解决控件

实现一个简单的行编辑器

0.目录 1.要求 2.开启.关闭回显和缓冲 3.显示大小写字母和数字 4.实现退格键 5.实现光标左右移动 6.实现Del键删除整行 7.总代码 1.要求 设计完成一个行编辑器:能够接受用户输入,能倒退删除,插入,移动光标等. 2.开启.关闭回显和缓冲 想要实现行编辑器的功能,就得解决两个问题: 一是在Linux命令行的默认模式下,输入一个字符就会回显在屏幕上,但是行编辑器不能让每个字符都输出在屏幕上,有些键是要作为功能键来使用的,所以必须关闭回显设置,让我们自己来设计有选择的输出字符. 二是

【Qt5开发及实例】14、实现一个简单的文本编辑器3

实现文本编辑器的图片旋转功能 基础界面实现:http://blog.csdn.net/cutter_point/article/details/42839071 首先在原来的基础上添加槽函数: void ShowRotate90(); //旋转90度 void ShowRotate180(); //180度 void ShowRotate270(); //270度 函数连接: //实现图片的选择动作 //旋转90° rotate90Action = new QAction(QIcon(":/ro