会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Michaellln
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
上一页
1
2
3
4
下一页
2022年1月14日
WrapPanel虚拟化
摘要: 备份文章: https://developer.aliyun.com/article/678501
阅读全文
posted @ 2022-01-14 11:39 白驹隙
阅读(50)
评论(0)
推荐(0)
编辑
2021年12月23日
关于Windows执行cmd命令的坑之一
摘要: cmd控制台中,执行一句打开exe的命令,相信不是什么大问题吧,直接文件名.exe就行了 但是如果执行带路径的exe,就有坑了,这个坑困扰了我几年我才发现 cmd中如果遇到路径中任何位置包含空格,都会执行失败,解决方法有两种: 1.路径中把空格去掉 2.把整段路径用""包含起来 具体代码就不贴了,懂
阅读全文
posted @ 2021-12-23 16:22 白驹隙
阅读(64)
评论(0)
推荐(0)
编辑
2021年12月22日
关于WPF中资源字典的内存优化
摘要: 今天看到一篇文章,是讲WPF内存优化的,其中有一些容易令人忽视的资源字典的细节 链接点这 1.重复使用的资源最好放到靠外层的XAML节点上,比如Window或者App.xaml层级,因为越靠内就越有可能会重复创建这个资源的副本,比如在ListBoxItem中声明一个Style 2.使用资源时,尽量使
阅读全文
posted @ 2021-12-22 12:04 白驹隙
阅读(96)
评论(0)
推荐(0)
编辑
2021年12月1日
C# .Net 获取当前电脑上的可移动磁盘
摘要: 转载来自如何获取可移动磁盘 ,看到对以后写代码肯定有用,故在此记录以防后续忘记 foreach (var driveInfo in DriveInfo.GetDrives()) { if (driveInfo.DriveType == DriveType.Removable) { } }
阅读全文
posted @ 2021-12-01 14:36 白驹隙
阅读(191)
评论(0)
推荐(0)
编辑
2021年11月24日
WPF获取ListBox、ListView之类列表的ScrollViewer实例
摘要: 之前忘记在哪里看到一个获取列表的ScrollViewer的方式,是使用VisualTree遍历子控件集合,从而获取到ScrollViewer 1 public static ScrollViewer GetScrollViewer(DependencyObject parent) 2 { 3 if
阅读全文
posted @ 2021-11-24 20:36 白驹隙
阅读(598)
评论(0)
推荐(0)
编辑
2020年5月15日
C# AES 加密解密
摘要: AES加密 1 public static string AESEncrypt(string toEncrypt, string key, string iv = "xxxxxxx") 2 { 3 byte[] keyArray = Encoding.UTF8.GetBytes(key); 4 by
阅读全文
posted @ 2020-05-15 14:40 白驹隙
阅读(438)
评论(0)
推荐(0)
编辑
C# ini文件操作帮助类
摘要: 1 public class IniConfigHelper 2 { 3 // 声明INI文件的写操作函数 WritePrivateProfileString() 4 5 [System.Runtime.InteropServices.DllImport("kernel32")] 6 private
阅读全文
posted @ 2020-05-15 14:36 白驹隙
阅读(481)
评论(0)
推荐(0)
编辑
C# 以GZip解压缩
摘要: 以GZip解压缩,这个在某次解析某站数据的时候用到了,保存留念 public static string GZipDecompressString(this string zippedString) { if (string.IsNullOrEmpty(zippedString) || zipped
阅读全文
posted @ 2020-05-15 14:32 白驹隙
阅读(691)
评论(0)
推荐(1)
编辑
C# 获取时间戳(支持毫秒)
摘要: 获取时间戳(支持毫秒) 1 public static long CurrentTimeStamp(bool isMinseconds = false) 2 { 3 var ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0); 4
阅读全文
posted @ 2020-05-15 14:30 白驹隙
阅读(8608)
评论(0)
推荐(0)
编辑
C#中 DateTime 转 DateTimeOffset
摘要: DateTime 转 DateTimeOffset,感觉两个对象好像都差不多,后者貌似更易于显示一点 1 public static DateTimeOffset ToDateTimeOffset(this DateTime dateTime) 2 { 3 return dateTime.ToUni
阅读全文
posted @ 2020-05-15 14:29 白驹隙
阅读(1586)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
下一页
公告