摘要:
ObservableCollection 只有项添加或删除才会更新UI要想属性发生变动后立刻更新到UI,必须继承 INotifyPropertyChanged 接口,示例如下 public class SurfaceDetail: INotifyPropertyChanged { //不更新到界面的属性 public string name { get; set... 阅读全文
摘要:
在内网可以正常使用PASV,但是在外网不行,导致数据传输慢或者根本连接不了,在FlashFXP中通过日志,找到了解决方法解决方法1.在Filezilla——Edit——Settings——Passive mode Settings 将mode切换为【Use the following IP:】 后面 阅读全文
摘要:
查看日志发现如下错误消息:%t LOG: could not receive data from client: An operation was attempted on something that is not a socket. 根据错误提示,在HP的官网找到了答案(应该是win的问题,却在 阅读全文
摘要:
*如果是系统崩溃,需要找回数据,PostgreSQL安装目录的data文件夹要存在 1.备份PostgreSQL安装目录到其他目录下 2.停止Postgres服务,可以在运行中输入services.msc,在启动的窗口中关闭掉postgres服务,也可以通过在cmd中输入 net stop post 阅读全文