簡單的winform編輯器

来源:http://www.cnblogs.com/shigezhuang/archive/2017/08/21/7406131.html
-Advertisement-
Play Games

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...


 

 

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尾碼名,打開或者是刪除的時候需要先點擊一下文本名。 寫的不足請見諒!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Semaphore:可理解為允許線程執行信號的池子,池子中放入多少個信號就允許多少線程同時執行。 ...
  • AutoResetEvent自動重置事件,與ManualResetEvent是相對的而言 ...
  • ManualResetEvent手動重置事件,它用於現場間同步時用法非常簡單也易於理解。 ...
  • ASP.NET Core 是一個控制台應用程式,在其 main 方法中創建一個Web伺服器,以下是program.cs中的代碼: Main 方法調用 WebHost.CreateDefaultBuilder ,它遵循建造者模式來創建 web application host 。 builder 定義 ...
  • ASP.NET MVC中Bundle是用於打包捆綁資源的(一般是css和js),它是在全局文件Global.asax.cs中註冊Bundle,而註冊的具體實現預設是在App_Start文件夾的BundleConfig.cs中 為了便於說明,這裡在HomeController下新建一個Action,如 ...
  • 一、課程介紹 直接開門見山吧,在學習之前阿笨想問大家一句,關於WebService遠程過程調用技術(RPC) 你真的會了嗎?不要跟老夫扯什麼WebService技術已經過時,如果你的內心有在偷偷告訴你其實我是真的不會WebService的話,那麼恭喜你,因為你在這茫茫的IT編程世界里找到了這本《C# ...
  • Asp.net筆記 一、Socket類 進行網路編程的類,可以在兩台電腦之間進行網路通訊 過程: 向伺服器發送指令: GET /index.html HTTP/1.1 Host:127.0.0.1:8080 回車空行 二、瀏覽器是什麼 瀏覽器就是一個Socket網路客戶端,幫助用戶請求網站伺服器上 ...
  • using System;using System.Windows.Forms;using System.Xml;namespace winformDemo{ public partial class Form2 : Form { public Form2() { InitializeCompone ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...