会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
当年小清新
城南小陌又逢春
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2021年1月13日
Metro学习
摘要: metro官方网站: https://mahapps.com/docs/guides/quick-start
阅读全文
posted @ 2021-01-13 15:25 当年小清新
阅读(73)
评论(0)
推荐(0)
2020年12月14日
wpf 高性能自定义chart
摘要: 上周五,公司要求我们用wpf做一个上波形图数据的控件,试了n个不收费的三方chart控件,功能是真好,但是性能不能,好一点的最多一次能加载几千个点,最后决定自己画。在QA论坛上问了一下,人家推荐用WriteableBitmap画,最后写完发现性能真的还行,10几万个点还算比较流畅,代码记录一下。 u
阅读全文
posted @ 2020-12-14 20:51 当年小清新
阅读(2022)
评论(0)
推荐(0)
2020年11月26日
==和Equal()的区别
摘要: C#中,判断相等有两种方式,一种是传统的==操作,一种是object提供的Equals方法。二者的区别在于: 一、==操作符判断的是堆栈中的值,Equlas判断的是堆中的值。 C#提供值类型和引用类型,值类型存储在栈上,故用==判断是直接判断其值是否相等,因为值类型不存在堆中的数据,因此值类型的Eq
阅读全文
posted @ 2020-11-26 10:31 当年小清新
阅读(346)
评论(0)
推荐(0)
.net framework源码地址
摘要: 查看源码: Reference Source (microsoft.com)
阅读全文
posted @ 2020-11-26 08:59 当年小清新
阅读(161)
评论(0)
推荐(0)
2020年11月20日
Gmap离线地图下载功能
摘要: 行政区域下载地址 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 当年小清新
阅读(1592)
评论(0)
推荐(0)
2020年10月25日
wcf首次使用代码配置文件记录
摘要: 服务器端配置文件 <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <services> <service name="SampleContract.Bird" behaviorConfigur
阅读全文
posted @ 2020-10-25 16:36 当年小清新
阅读(122)
评论(0)
推荐(0)
2020年10月14日
截取数组
摘要: 今天做串口通信时,想截取数组第二位到最后一位,将方法记录一下 bytes.Skip(1).Take(bytes.Length-1).ToArray()
阅读全文
posted @ 2020-10-14 15:29 当年小清新
阅读(231)
评论(0)
推荐(0)
2020年7月23日
C# 使用Newtonsoft.Json读写Json文件
摘要: 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 当年小清新
阅读(12749)
评论(0)
推荐(2)
2020年7月22日
MVVM-后台代码绑定事件命令
摘要: InvokeCommandAction ic = new InvokeCommandAction(); ic.Command = ((GISMapViewModel)(this.DataContext)).NavigtedToImageMapCommand;//绑定的命令 //ic.CommandP
阅读全文
posted @ 2020-07-22 08:05 当年小清新
阅读(274)
评论(0)
推荐(0)
2020年7月13日
WPF-后台代码使用Behavior
摘要: xaml里面使用很简单 xmlns:i="http://schemas.microsoft.com/xaml/behaviors" <i:Interaction.Behaviors> <i:MouseDragElementBehavior/> </i:Interaction.Behaviors> 后
阅读全文
posted @ 2020-07-13 19:23 当年小清新
阅读(1635)
评论(0)
推荐(1)
上一页
1
2
3
4
5
6
下一页
公告