07 2012 档案

摘要:XAML Namespace http://schemas.microsoft.com/expression/blend/2008 is not resolved报上述错误时,需要再上以下引用xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d" 阅读全文
posted @ 2012-07-27 18:14 Vito.K 阅读(352) 评论(1) 推荐(0)
摘要:1B (byte 字节); 1KB(Kilobyte 千字节) = 2^10 B = 1024 B; 1MB(Megabyte 兆字节) = 2^10 KB = 1024 KB = 2^20 B; 1GB(Gigabyte 吉字节) = 2^10 MB = 1024 MB = 2^30 B; 1TB(Trillionbyte 太字节) = 2^10 GB = 1024 GB = 2^40 B;------------- big data 1PB(Petabyte 拍字节) = 2^10 TB = 1024 TB = 2^50 B; 1EB(Exabyte 艾字节) = 2^10 PB = 10 阅读全文
posted @ 2012-07-26 22:18 Vito.K 阅读(516) 评论(0) 推荐(0)
摘要:MVVM 精要1 Model :对现实对象的抽象。基本概括为都有哪些属性 。2 ViewModel:是美一个界面的xaml的 数据通讯类。 View是从ViewModel类那找对应Binding的数据。ViewModel的基本命名规则就是 View界面的名称加ViewModel后缀(MainWindowViewModel),ViewModel中要暴露出所有View页面所需求的属性Binding以及操作CommandBinding。ViewModel中要实现所有页面操作CommandBinding的动作方法。为了使Binding生效,所有ViewModel类都应该实现INotifyPropert 阅读全文
posted @ 2012-07-19 23:22 Vito.K 阅读(1158) 评论(0) 推荐(0)
摘要:http://115.com/file/an2vpzd1#JsonView.zip 阅读全文
posted @ 2012-07-14 03:31 Vito.K 阅读(398) 评论(0) 推荐(0)
摘要:谷歌地图API位置请求 Google maps api以xml格式传回请求的地址:http://maps.google.com/maps/api/geocode/xml?latlng=39.910093,116.403945&language=zh-CN&sensor=false文件样式:This XML file does not appear to have any style information associated with it. The document tree is shown below.<GeocodeResponse><status& 阅读全文
posted @ 2012-07-14 00:04 Vito.K 阅读(2494) 评论(2) 推荐(0)