会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
韵切
首页
管理
1
2
3
4
5
下一页
2017年10月7日
KMP C++
摘要: KMP C++实现
阅读全文
posted @ 2017-10-07 22:34 韵切
阅读(121)
评论(0)
推荐(0)
2017年6月28日
C# xml读写
摘要: 1 class XmlClass 2 { 3 public string Pathname; //总列表 4 public XmlClass() 5 { 6 string str = System.AppDomain.CurrentDomain.BaseDirectory; 7 ...
阅读全文
posted @ 2017-06-28 22:39 韵切
阅读(241)
评论(0)
推荐(0)
2017年6月13日
数据绑定通知 INotifyPropertyChanged
摘要: Binding bind = new Binding() { Source = new BackgroundPath(), Path = new PropertyPath("BindSource") }; faceImge.SetBinding(Image.SourceProperty,bind);
阅读全文
posted @ 2017-06-13 18:06 韵切
阅读(229)
评论(0)
推荐(0)
Binding 依赖属性定义
摘要: class BackgroundPath:Image { public event PropertyChangedEventHandler PropertyChanged; static BackgroundPath() { BindSourceProperty = DependencyPro...
阅读全文
posted @ 2017-06-13 17:10 韵切
阅读(393)
评论(0)
推荐(0)
2017年6月2日
Linux 桌面安装
摘要: https://unix.stackexchange.com/questions/181503/how-to-install-desktop-environments-on-centos-7
阅读全文
posted @ 2017-06-02 18:01 韵切
阅读(205)
评论(0)
推荐(0)
2017年5月25日
Object 序列化为 Xml 文档
摘要: 反序列化 Xml 文档
阅读全文
posted @ 2017-05-25 16:25 韵切
阅读(226)
评论(0)
推荐(0)
2017年5月22日
XmlSerializer .NET 序列化、反序列化
摘要: 序列化对象 要序列化对象,首先创建要序列化的对象并设置其公共属性和字段。为此,您必须确定要将XML流存储的传输格式,作为流或文件。 例如,如果XML流必须以永久形式保存,则创建一个FileStream对象。 序列化对象 创建对象并设置其公共字段和属性。 构造一个XmlSerializer的使用对象的
阅读全文
posted @ 2017-05-22 18:54 韵切
阅读(418)
评论(0)
推荐(0)
2017年5月2日
UWP 视觉状态管理 VisualStateManager
摘要: ...
阅读全文
posted @ 2017-05-02 16:01 韵切
阅读(268)
评论(0)
推荐(0)
2017年4月25日
RainbowEight
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Runtime.InteropServices.WindowsRuntime; 6 using System.Threading.Tasks; 7 using Windo...
阅读全文
posted @ 2017-04-25 19:50 韵切
阅读(244)
评论(0)
推荐(0)
Thread.Sleep在WinRT中---uwp应用
摘要: 当我注意到WinRT缺少Thread.Sleep功能时,我感到惊讶。幸运的是,MSDN论坛提供了以下代码段,它很好地提供了相同的功能: 1 static void Sleep(int ms) 2 { 3 new System.Threading.ManualResetEvent(false).Wai
阅读全文
posted @ 2017-04-25 16:37 韵切
阅读(325)
评论(0)
推荐(0)
1
2
3
4
5
下一页