上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页
摘要: 所有操作基于以下类 class Employees { public int Id { get; set; } public string Name { get; set; } public string City { get; set; } public DateTime BirthDate { 阅读全文
posted @ 2020-04-24 09:26 liessay 阅读(2694) 评论(0) 推荐(1) 编辑
摘要: 使用类库为 https://gitee.com/kuiyu/dotnetcodes/tree/master/DotNet.Utilities/%E6%B1%89%E5%AD%97%E8%BD%AC%E6%8B%BC%E9%9F%B3 取首字母 textBox2.Text = PinYin.GetCo 阅读全文
posted @ 2020-04-20 11:17 liessay 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 本教程说明如何在C#.NET Windows Forms Application中将图像转换为base64字符串,以及将base64字符串转换为图像。您可以创建一个新的Windows窗体应用程序项目来演示,然后从Visual Studio工具箱中将图片框,标签和按钮拖到Winform中,然后设计一个 阅读全文
posted @ 2020-04-20 10:58 liessay 阅读(4485) 评论(0) 推荐(0) 编辑
摘要: 本演示说明了如何使用c#.net Windows Forms应用程序中的system.speech库将文本转换为语音。Microsoft .NET框架提供System.Speech.Synthesis进行语音合成。要播放演示,您可以将Visual Studio工具箱中的Label,Combobox, 阅读全文
posted @ 2020-04-20 10:32 liessay 阅读(700) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { //清除Series chart1.Series.Clear(); Random randon = new Random(); //添加第一个Series chart1.Series.A 阅读全文
posted @ 2020-04-17 18:42 liessay 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 显示分组面板 gridView1.OptionsView.ShowGroupPanel = true; 是否开启多选 gridView1.OptionsSelection.MultiSelect = true; 多选模式(开启多选生效),行选择、单元格选择,CheckBox选择 //单元格选择 gr 阅读全文
posted @ 2020-04-16 13:35 liessay 阅读(826) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Data; using System.Windows.Forms; using DotNet.Utilities; namespace WindowsFormsApp1 { public partial class Form1 : Form { 阅读全文
posted @ 2020-04-16 12:48 liessay 阅读(715) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-01-16 19:21 liessay 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: //每次保存后自动格式化 "editor.formatOnSave": true, // #每次保存的时候将代码按eslint格式进行修复 "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, // #让函数(名)和后面的括号之间 阅读全文
posted @ 2020-01-16 09:13 liessay 阅读(599) 评论(0) 推荐(1) 编辑
摘要: Model层Region.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebApplication1.Models { public class R 阅读全文
posted @ 2020-01-15 22:01 liessay 阅读(880) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页