06 2017 档案

摘要:ScintillaNet 是一个免费的文本编辑控件,现在托管于Githubhttps://github.com/jacobslusser/ScintillaNET另外几个比较全面的Demo示例地址:https://github.com/hgupta9/ScintillaNET.Demohttps://github.com/uuf6429/ScintillaNET-Kitchen第一个示例:Scin... 阅读全文
posted @ 2017-06-23 13:16 谷仁儿 阅读(5309) 评论(1) 推荐(2)
摘要://获取当前进程的完整路径,包含文件名(进程名)。string str = this.GetType().Assembly.Location;result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)//获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名)。string str = System.Diagnostic... 阅读全文
posted @ 2017-06-21 15:19 谷仁儿 阅读(209) 评论(0) 推荐(0)
摘要:1、设置DataGridView 的属性 SelectionModeSelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;2、设置事件CellMouseDownprivate void dgvResult_CellMouseDown(object sender, DataGridViewCellMo... 阅读全文
posted @ 2017-06-20 13:12 谷仁儿 阅读(1498) 评论(0) 推荐(0)
摘要:数据实体对象public class ProductInvLocationMapEntity:BaseDomain { #region Constructors public ProductInvLocationMapEntity() { } #endregion #region Properties ///... 阅读全文
posted @ 2017-06-19 15:58 谷仁儿 阅读(3636) 评论(0) 推荐(0)
摘要:1 public class Person : BaseDomain 2 { 3 long _id; 4 string firstName; 5 string secondName; 6 string comments; 7 8 public Person() 9 {} 10 11 public P 阅读全文
posted @ 2017-06-15 15:16 谷仁儿 阅读(3292) 评论(0) 推荐(0)