摘要: 一、ContextMenuStrip创建主菜单与子菜单 using System; using System.Windows.Forms; using System.ComponentModel; using System.Data; namespace MenuStripExample { pub 阅读全文
posted @ 2024-03-13 17:42 苏沐~ 阅读(693) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> class MouseHandler { constructor(selector) { this.domBtn = document.querySelector(selector); // 阻止右键出菜单事件 this.domBtn. 阅读全文
posted @ 2024-03-07 11:05 苏沐~ 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 一、常用属性和用法 1、常用属性: 属性名 作用 DropDownStyle 获取或设置组合框的外观,如果值为Simple,同时显示文本框和列表框,并且文本框可以编辑;如果值为DropDown,则只显示文本框,通过鼠标或键盘的点击事件展开文本框,并且文本框可以编辑;如果值为DropDownList, 阅读全文
posted @ 2024-01-30 18:20 苏沐~ 阅读(5452) 评论(0) 推荐(1) 编辑
摘要: /*存储改变前的值*/ private string ComboBox1_Beforevalue = String.Empty; private string TextBox1_Beforevalue = String.Empty; /*ComboBox1*/ this.ComboBox1.Sele 阅读全文
posted @ 2024-01-29 16:08 苏沐~ 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 一、布局属性 (1)StartPosition属性:用来获取或设置程序运行时窗体的初始显示位置,该属性有5个可选属性值,默认值 WindowsDefaultLocation。属性值如下表: 属性值 说明 Manual(手动) 窗体的初始显示位置由Location属性决定 CenterScreen(屏 阅读全文
posted @ 2024-01-25 15:09 苏沐~ 阅读(2201) 评论(0) 推荐(0) 编辑
摘要: 一、DataTable新增行、列 public void CreateTable() { //创建表 DataTable dt = new DataTable(); //1、添加列 dt.Columns.Add("Name", typeof(string)); //数据类型为 文本 //2、通过列架 阅读全文
posted @ 2024-01-24 17:48 苏沐~ 阅读(3788) 评论(0) 推荐(1) 编辑
摘要: string BeforeValue = "123456789"; string AfterValue = "321465798"; // 参数验证 if (BeforeValue == null || AfterValue == null || BeforeValue.Length != Afte 阅读全文
posted @ 2024-01-24 17:22 苏沐~ 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Dim BeforeValue As String = "123456789" Dim AfterValue As String = "321465798" ' 参数验证 If BeforeValue Is Nothing OrElse AfterValue Is Nothing OrElse Be 阅读全文
posted @ 2024-01-24 15:12 苏沐~ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 一、EventBus的创建以及使用 //1、在 src 的 main.js 中,加上以下代码 import Vue from 'vue' Vue.prototype.$EventBus = new Vue() //2、发送消息,使用Vue原型链引入 this.$EventBus.$emit('get 阅读全文
posted @ 2024-01-22 16:20 苏沐~ 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 查 --查找表里是否有某个字段: SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME ='字段名' AND Table_Name like '[^V]%' 增 --新增字段: ALTER TABLE 表名 ADD 字段 char(1) 阅读全文
posted @ 2024-01-17 18:03 苏沐~ 阅读(28) 评论(0) 推荐(0) 编辑