09 2022 档案
摘要:<Grid> <TabControl TabStripPlacement="Left"> <TabControl.Resources> <Style TargetType="{x:Type TabItem}"> <Setter Property="HeaderTemplate"> <Setter.V
阅读全文
摘要:有时候Command需要多个参数,记录一下操作方式 <Button Content="Zoom" Command="{Binding BtnCommand"> <Button.CommandParameter> <MultiBinding Converter="{StaticResource MyC
阅读全文
摘要:在项目中有次听别人说因为GIF播放引起了重大BUG。今天看到了一个gif不知好用否,时间紧,待后面测试吧。 仓库地址:https://github.com/XamlAnimatedGif/WpfAnimatedGif Nuget 包:WpfAnimatedGif。 xaml使用 <Image gif
阅读全文
摘要:经常我们需要设置一个程序运行以后 开机自动启动。代码实现如下 定时任务型 public static _TASK_STATE AutoStartup(string creator, string taskName, string path) { try { //实例化任务对象 TaskSchedul
阅读全文
摘要:最近工作需要,边学边写WPF, 看到<Application.Resources>里的<ResourceDictionary.MergedDictionaries> ResourceDictionary source = uri 时看到URI好奇怪,查询了下 记录如下 引用自 http://www.
阅读全文
摘要:记录一个我平时忽略了的系统查询 using System; using System.Management; public class Sample { public static void Main(string[] args) { ManagementObjectSearcher s = new
阅读全文