上一页 1 2 3 4 5 6 ··· 35 下一页

2016年8月17日

DataGridView DataSource INotifyPropertyChanged 避免闪烁的方法

摘要: 代码说话:dgvPosition就是需要避免闪烁的DataGridView主要是加2段代码1.SetStyle2.datagridview设置DoubleBuffered属性为True public AccountPositionControl() { ... 阅读全文

posted @ 2016-08-17 22:10 norsd 阅读(276) 评论(0) 推荐(0) 编辑

2016年8月12日

Pycharm 设置TextStyle

摘要: 之前在脚本中选择了一个字符串, PyCharm会“高亮”所有相同的字符串, 但是我不满意这个“高亮”的颜色,因为和背景色太相似了,所以需要做一下操作,修改这个“高亮”颜色值: File–Settings 在Settings对话框的左侧选择 Editor->Colors & Font... 阅读全文

posted @ 2016-08-12 01:13 norsd 阅读(313) 评论(0) 推荐(0) 编辑

2016年8月10日

在Visual Studio中编译Linux的一些问题

摘要: 相对路径: 在windows下,和当前文件同一个目录下的引用会这么写: #include “SubDirectory\header.h” 或者 #include “SubDirectory/header.h” 但是这些语句没法被Linux正确识别,Linux需要: #include... 阅读全文

posted @ 2016-08-10 15:17 norsd 阅读(256) 评论(0) 推荐(0) 编辑

2016年8月2日

Listbox 实现Item双击事件

摘要: void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) { int index = this.listBox1.IndexFromPoint(e.Location); if... 阅读全文

posted @ 2016-08-02 21:36 norsd 阅读(1313) 评论(0) 推荐(0) 编辑

2016年6月28日

CentOS 6.5 安装Clang 3.5.0

摘要: 来自引用: http://www.cnblogs.com/dudu/p/4294374.html编译llvm几乎耗费了1个小时…..编译CoreCLR需要Clang 3.5,而CentOS上安装的是Clang 3.4.2(yum repos中最新版也是这个),只能自己手工编译LLV... 阅读全文

posted @ 2016-06-28 21:24 norsd 阅读(585) 评论(0) 推荐(0) 编辑

2016年6月9日

TemplateText TT 在Runtime发生 Could not load type ...... because the format is invalid

摘要: Severity Code Description Project File Line Suppression State Error Running transformation: System.TypeLoadException: Could... 阅读全文

posted @ 2016-06-09 20:39 norsd 阅读(443) 评论(0) 推荐(0) 编辑

2016年6月7日

GDB 远程调试Linux (CentOS)

摘要: 1.引用: https://blogs.msdn.microsoft.com/vcblog/2016/03/30/visual-c-for-linux-development/注意安装gdbserver的命令是 yum install gdb-gdbserver 不是文中的gdb... 阅读全文

posted @ 2016-06-07 15:30 norsd 阅读(586) 评论(0) 推荐(0) 编辑

2016年6月2日

CentOS 安装配置vncserver

摘要: yum 安装tiger vncserver yum install tigervnc-server安装后输入 vncserver 设置密码3.配置用户 vim /etc/sysconfig/vncservers VNCSERVERS=”1:root” VNCSERVERARGS... 阅读全文

posted @ 2016-06-02 12:27 norsd 阅读(153) 评论(0) 推荐(0) 编辑

CentOS设置代理, yum, wget

摘要: /etc # vi yum.conf [main] cachedir=/var/cache/yum/basearch/releasever keepcache=0 debuglevel=2 logfile=/var/log/yum.log exactarch=1 obsolete... 阅读全文

posted @ 2016-06-02 11:28 norsd 阅读(763) 评论(0) 推荐(0) 编辑

2016年5月30日

Python 获取脚本路径以及脚本所在文件夹路径

摘要: import os script_path = os.path.realpath(__file__) script_dir = os.path.dirname(script_path) 阅读全文

posted @ 2016-05-30 02:06 norsd 阅读(385) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 35 下一页

导航