06 2019 档案

摘要:findViewById 的另外一种表现形式 @BindView 导入: 绑定: 使用: 等价于: OnClick的另外一个表达方式 阅读全文
posted @ 2019-06-24 15:45 蜜铀 阅读(131) 评论(0) 推荐(0)
摘要:到某个文件夹: cd file_path 克隆远程git内容到本地(file_path下将有个project子目录) git clone http://bug01.com/project/.git 到project目录下: cd project 列出所有分支名称 git branch -a 分支导入 阅读全文
posted @ 2019-06-10 23:33 蜜铀 阅读(203) 评论(0) 推荐(0)
摘要:javabean 中常用 get set .... 可用: Code-->Generate 通过快捷键Alt+Insert 阅读全文
posted @ 2019-06-07 15:46 蜜铀 阅读(559) 评论(0) 推荐(0)
摘要:因为打开和保存继承于FileDialog 同一个,所以做了个通用方法。 打开文件操作 保存操作 阅读全文
posted @ 2019-06-05 15:43 蜜铀 阅读(10561) 评论(3) 推荐(2)
摘要:如果有个表 rowid name 1 A 2 B 3 C 删除了1 后 rowid name 2 B 3 C 在 SQLite执行Vacuum命令(释放空间)后 rowid name 1 B 2 C 阅读全文
posted @ 2019-06-04 10:49 蜜铀 阅读(334) 评论(0) 推荐(0)
摘要:public class NotificationObject: INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void RaisePropertyChanged(string propertyName) ... 阅读全文
posted @ 2019-06-04 09:29 蜜铀 阅读(297) 评论(0) 推荐(0)
摘要:Imports System.ComponentModel ''' ''' 属性变化后通知UI ''' ''' Public Class NotificationObject Implements INotifyPropertyChanged Public Event PropertyChanged(sender As Object, e As PropertyC... 阅读全文
posted @ 2019-06-04 09:27 蜜铀 阅读(290) 评论(1) 推荐(0)
摘要:我觉得,在这之前,需要一个可视化SQL的东西——下载 SQLite Expert Personal 4.x 并安装 新建一个C#项目 打开程序包管理程序视图 不知道要用哪个,反正硬盘大,x64, x86都装上了: install-package system.data.sqlite.x86 inst 阅读全文
posted @ 2019-06-03 15:14 蜜铀 阅读(188) 评论(0) 推荐(0)