摘要: metro官方网站: https://mahapps.com/docs/guides/quick-start 阅读全文
posted @ 2021-01-13 15:25 当年小清新 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 上周五,公司要求我们用wpf做一个上波形图数据的控件,试了n个不收费的三方chart控件,功能是真好,但是性能不能,好一点的最多一次能加载几千个点,最后决定自己画。在QA论坛上问了一下,人家推荐用WriteableBitmap画,最后写完发现性能真的还行,10几万个点还算比较流畅,代码记录一下。 u 阅读全文
posted @ 2020-12-14 20:51 当年小清新 阅读(1915) 评论(0) 推荐(0) 编辑
摘要: C#中,判断相等有两种方式,一种是传统的==操作,一种是object提供的Equals方法。二者的区别在于: 一、==操作符判断的是堆栈中的值,Equlas判断的是堆中的值。 C#提供值类型和引用类型,值类型存储在栈上,故用==判断是直接判断其值是否相等,因为值类型不存在堆中的数据,因此值类型的Eq 阅读全文
posted @ 2020-11-26 10:31 当年小清新 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 查看源码: Reference Source (microsoft.com) 阅读全文
posted @ 2020-11-26 08:59 当年小清新 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 行政区域下载地址 http://datav.aliyun.com/tools/atlas/#&lat=30.332329214580188&lng=106.72278672066881&zoom=3.5 2022/02/17添加 根据经纬度坐标获得省市区县行政区划城市名称,自建数据库 java py 阅读全文
posted @ 2020-11-20 16:58 当年小清新 阅读(1435) 评论(0) 推荐(0) 编辑
摘要: 服务器端配置文件 <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <services> <service name="SampleContract.Bird" behaviorConfigur 阅读全文
posted @ 2020-10-25 16:36 当年小清新 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 今天做串口通信时,想截取数组第二位到最后一位,将方法记录一下 bytes.Skip(1).Take(bytes.Length-1).ToArray() 阅读全文
posted @ 2020-10-14 15:29 当年小清新 阅读(220) 评论(0) 推荐(0) 编辑
摘要: json: { "Information": [ { "LocationName": "通道1", "Points": [ [ 1, 2, 3, 4 ], [ 5, 6, 7, 8 ] ] }, { "LocationName": "通道2", "Points": [ [ 11, 2, 3, 4 ] 阅读全文
posted @ 2020-07-23 14:11 当年小清新 阅读(11733) 评论(0) 推荐(2) 编辑
摘要: InvokeCommandAction ic = new InvokeCommandAction(); ic.Command = ((GISMapViewModel)(this.DataContext)).NavigtedToImageMapCommand;//绑定的命令 //ic.CommandP 阅读全文
posted @ 2020-07-22 08:05 当年小清新 阅读(270) 评论(0) 推荐(0) 编辑
摘要: xaml里面使用很简单 xmlns:i="http://schemas.microsoft.com/xaml/behaviors" <i:Interaction.Behaviors> <i:MouseDragElementBehavior/> </i:Interaction.Behaviors> 后 阅读全文
posted @ 2020-07-13 19:23 当年小清新 阅读(1603) 评论(0) 推荐(1) 编辑