摘要: 如果有个表 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 蜜铀 阅读(321) 评论(0) 推荐(0) 编辑
摘要: public class NotificationObject: INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void RaisePropertyChanged(string propertyName) ... 阅读全文
posted @ 2019-06-04 09:29 蜜铀 阅读(283) 评论(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 蜜铀 阅读(255) 评论(1) 推荐(0) 编辑