上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页
摘要: 隐藏treeview相关联的线连接 ShowLines 设置为false 设置行高: itemHeight 设置在窗体的位置: Dock 设置是否随窗体大小改变而改变: Anchor 设置被选中后,是否占满整行: FullRowSelect 被点击后的事件: AfterSelect private 阅读全文
posted @ 2024-05-22 17:27 龙卷风吹毁停车场 阅读(39) 评论(0) 推荐(0)
摘要: 1.打开 Program.cs 文件,在 var app = builder.Build(); 语句前添加如下代码 builder.Services.AddCors(o => o.AddPolicy("any", p => p.AllowAnyOrigin().AllowAnyHeader().Al 阅读全文
posted @ 2024-05-22 09:12 龙卷风吹毁停车场 阅读(140) 评论(0) 推荐(0)
摘要: 新建一个CommandInfo.cs 类 using System; using System.Collections.Generic; using System.Data.Common; using System.Linq; using System.Text; using System.Thre 阅读全文
posted @ 2024-05-21 15:00 龙卷风吹毁停车场 阅读(59) 评论(0) 推荐(0)
摘要: private void buttonDelete_Click(object sender, EventArgs e) { DialogResult = MessageBox.Show("确定删除这些数据么?", "提示", MessageBoxButtons.YesNo); List<int> l 阅读全文
posted @ 2024-05-20 15:03 龙卷风吹毁停车场 阅读(56) 评论(0) 推荐(0)
摘要: 在sql-server设计表格中直接修改无效,目前并不知道为撒不行, 但是可以使用命令的方式修改 alter table 表名 alter column 列名 要修改成的数据类型 列: alter table ClassInfo alter column ClassName varchar(50) 阅读全文
posted @ 2024-05-18 13:46 龙卷风吹毁停车场 阅读(100) 评论(0) 推荐(0)
摘要: using System.Data; using System.Data.SqlClient; class Pranson() { public static void Main() { //创建数据库链接对象 string connString = "Server=.;DataBase=Cours 阅读全文
posted @ 2024-04-23 13:55 龙卷风吹毁停车场 阅读(129) 评论(0) 推荐(0)
摘要: use master go if exists(select * from sysdatabases where name = 'CourseManageDB') --查询是否存在这个库 drop database CourseManageDB --删除数据库(不可恢复) go --表示结束 cre 阅读全文
posted @ 2024-04-23 13:08 龙卷风吹毁停车场 阅读(79) 评论(0) 推荐(0)
摘要: https://visualstudio.microsoft.com/zh-hans/https://visualstudio.microsoft.com/zh-hans/downloads/ 阅读全文
posted @ 2024-03-22 23:14 龙卷风吹毁停车场 阅读(95) 评论(0) 推荐(0)
摘要: <template> <el-upload :action="uploadUrl" :on-success="handleSuccess" multiple> <el-button size="small" type="primary">点击上传</el-button> </el-upload> < 阅读全文
posted @ 2024-03-22 13:17 龙卷风吹毁停车场 阅读(1402) 评论(0) 推荐(0)
摘要: option={ series:[ { barWidth: 20, name: "预警", type: "bar",//柱状图 stack: "Search Engine", data: [120, 132, 101, 134, 90, 230, 210], color: '#435188', ba 阅读全文
posted @ 2024-03-20 13:42 龙卷风吹毁停车场 阅读(260) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页