c#
obsorb_knowledge
心有不甘,呼唤着我
展开
-
C#基础编程
输入:s1 = Console.ReadLine(); 输出:s2 = Console.WriteLine(“{0},{1}”,a,b); 强制转换 float a = Convert.ToSingle(Console.ReadLine()); ...原创 2019-07-12 13:39:38 · 155 阅读 · 0 评论 -
c# 一些控件
1、基础格式化 (1)把int i 转化为 十六进制然后转化为字符型。添加到下拉框中 for (int i = 0; i < 256; i++) { string Xnum = i.ToString("x").ToUpper(); // 把i转化为16进制,然后转化为字符 ...原创 2019-07-17 19:11:37 · 254 阅读 · 0 评论 -
C# 自定义索引
1、里面运用到了IEnumerable<>接口, using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { public class P...原创 2019-08-09 11:30:41 · 217 阅读 · 0 评论 -
C# Xml 文件
1、Xml的页面: 2、建立或写入 在这之前,需要知道:从结构上讲.XmlElement(元素)是 XmlNode (节点) 的派生类 XmlNode 是 DOM 的.NET 实现中的基类。在调用本函数前,需要传入结构(如:存储这内容的list链表),路径。 代码: public void WriteTestRecordXml(TestRecordStruct...原创 2019-08-23 16:18:35 · 550 阅读 · 0 评论 -
C# 常用控件
1、checkBox复选框 属性checkBox.Checked =true; 2、RadioButton单选框具有两个状态: true 或 false。RadioButton是否已选择取决于其Checked属性的状态。在一个板块中的单选钮,只能选中一个 3、listbox列表框 ,列表,所以只能一行一行的加入滚动条添加到列表框中,listBox.Items.Add(...原创 2019-08-23 15:42:35 · 975 阅读 · 0 评论 -
c# 控件 跨线程 使用
(1) textbox button等等控件 跨线程 使用 Action 函数 = delegate 建立 委托跨线程的方式。 Action asynsBtnDelegate = delegate { textBox_EEPROMInfo.AppendText(SumStr); }; this.textBox_EEPROMInfo.Invoke(asynsBt...原创 2019-08-29 16:04:09 · 238 阅读 · 0 评论