会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
执念、旧时光
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
下一页
2018年8月20日
】C#模态窗口和非模态窗口 - 白菜小腾的日志
摘要: http://caijianteng.blog.163.com/blog/static/12990241420153194621934/
阅读全文
posted @ 2018-08-20 09:39 执念、旧时光
阅读(196)
评论(0)
推荐(0)
2018年7月16日
winform控件值绑定
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using DevExpress.XtraEditors;using System.Windows.Forms;using System
阅读全文
posted @ 2018-07-16 09:54 执念、旧时光
阅读(1591)
评论(0)
推荐(1)
model拷贝
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Runtime.Serialization;using System.Runt
阅读全文
posted @ 2018-07-16 09:52 执念、旧时光
阅读(190)
评论(0)
推荐(0)
2018年6月13日
winform 添加背景音乐
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices; namespace ZSDSystemClient { cl
阅读全文
posted @ 2018-06-13 16:20 执念、旧时光
阅读(943)
评论(0)
推荐(0)
2018年5月31日
浮点类型和 小数类型
摘要: 浮点类型 小数在C#中采用浮点类型的数据来表示,浮点类型的数据包含两种:单精度浮点型(float)和双精度浮点型(double),其区别在于取值范围和精度的不同。计算机对浮点数据的运算速度大大低于对整数的运算速度,因此在对精度要求不高的情况下,我们可以采用单精度类型,而在精度要求较高的情况下可以使用
阅读全文
posted @ 2018-05-31 11:13 执念、旧时光
阅读(4153)
评论(0)
推荐(0)
2018年5月28日
ref和out
摘要: ref 关键字使参数按引用传递。其效果是,当控制权传递回调用方法时,在方法中对参数所做的任何更改都将反映在该变量中。若要使用 ref 参数,则方法定义和调用方法都必须显式使用 ref 关键字。例如: class RefExample { static void Method(ref int i) {
阅读全文
posted @ 2018-05-28 11:23 执念、旧时光
阅读(164)
评论(0)
推荐(0)
2018年4月20日
获取本机ip
摘要: public string GetIP() { IPAddress[] ips = Dns.GetHostAddresses(Dns.GetHostName()); //txtlocalIP.Text = ips[0].ToString(); IPAddress ip = IPAddress.Par
阅读全文
posted @ 2018-04-20 11:10 执念、旧时光
阅读(104)
评论(0)
推荐(0)
2018年4月18日
sql连接
摘要: 1.连接类型在关系代数中,连接运算是由一个笛卡尔积运算和一个选取运算构成的。首先用笛卡尔积完成对两个数据集合的乘运算,然后对生成的结果集合进行选取运算,确保只把分别来自两个数据集合并且具有重叠部分的行合并在一起。连接的全部意义在于在水平方向上合并两个数据集合(通常是表),并产生一个新的结果集合,其方
阅读全文
posted @ 2018-04-18 14:52 执念、旧时光
阅读(266)
评论(0)
推荐(0)
2018年3月21日
gridControl获取选中行的值
摘要: private void MainView_DoubleClick(object sender, EventArgs e) { BControlcarInfoModel SelectModel = (BControlcarInfoModel)MainView.GetFocusedRow(); if
阅读全文
posted @ 2018-03-21 17:29 执念、旧时光
阅读(5304)
评论(0)
推荐(0)
2018年3月19日
DevExpress GridControl Gridview RepositoryItemCheckEdit复选框及获取选择行数据
摘要: http://blog.csdn.net/gisdoer/article/details/49250373
阅读全文
posted @ 2018-03-19 09:30 执念、旧时光
阅读(1351)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
下一页
公告