摘要: 1. 窗体排列 #region 程序集 System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemb 阅读全文
posted @ 2020-07-27 18:26 客饭 阅读(138) 评论(0) 推荐(0)
摘要: C#中Intptr: https://blog.csdn.net/ABC13222880223/article/details/100192245 阅读全文
posted @ 2020-07-27 17:36 客饭 阅读(103) 评论(0) 推荐(0)
摘要: ??? 阅读全文
posted @ 2020-07-27 17:31 客饭 阅读(38) 评论(0) 推荐(0)
摘要: 参见:https://www.cnblogs.com/bdqczhl/p/7284499.html 阅读全文
posted @ 2020-07-27 17:25 客饭 阅读(114) 评论(0) 推荐(0)
摘要: 1.TextBox 1 namespace System.Windows.Forms 2 { 3 // 4 // 摘要: 5 // 表示 Windows 文本框控件。 6 [ClassInterface(ClassInterfaceType.AutoDispatch)] 7 [ComVisible( 阅读全文
posted @ 2020-07-27 16:42 客饭 阅读(266) 评论(0) 推荐(0)
摘要: 1.鼠标等相关事件 onmousedown 当用户用任何鼠标按钮单击对象时触发。 onmouseenter 当用户将鼠标指针移动到对象内时触发。 onmouseleave 当用户将鼠标指针移出对象边界时触发。 onmousemove 当用户将鼠标划过对象时触发。 onmouseout 当用户将鼠标指 阅读全文
posted @ 2020-07-27 16:02 客饭 阅读(210) 评论(0) 推荐(0)
摘要: 1.访问修饰符 public int _age;private char _gender;internal int _chinese;protected internal int _math; 2.自动属性 // 初始属性值为0。 public int Age { get; set; } 3.接口: 阅读全文
posted @ 2020-07-27 15:32 客饭 阅读(77) 评论(0) 推荐(0)
摘要: 1.读取CSV文件 python中csv模块读取reader只能读取一次:https://segmentfault.com/q/1010000012241291 注意可能会有:I/O operation on closed file with open(path,'r',encoding="GB23 阅读全文
posted @ 2020-07-25 08:31 客饭 阅读(523) 评论(0) 推荐(0)
摘要: 1.依据tushare官网上的数据 可知 发送数据为,且格式为 JSON { "api_name": "daily", "token": "您的 TOKEN", "params": {"ts_code":"000001.SZ,600000.SH","trade_date":"20200723"}, 阅读全文
posted @ 2020-07-24 12:16 客饭 阅读(738) 评论(0) 推荐(0)
摘要: FileInfo : FileSystemInfo 取或设置当前文件或目录的创建时间:CreationTim 取或设置上次写入当前文件或目录的时间:LastWriteTime 获取模块的完整路径,比如获取当前程序的所在目录:System.AppDomain.CurrentDomain.BaseDir 阅读全文
posted @ 2020-07-22 16:05 客饭 阅读(71) 评论(0) 推荐(0)