摘要:
该Demo使用是纯C#编写(不建议使用XAML做动画效果,内存开销不可控且不便操作) 效果:速度、启动、暂停、缓动效果、线性渐变 代码如下 using System; using System.Text.RegularExpressions; using System.Windows; using 阅读全文
摘要:
当我们把ARGB压缩为RGB数据时,会丢失A透明通道 那么就有可能会遇到反推A透明通道的问题 原理很简单,取RGB三色最大通道除255得到A通道 Random random = new Random(); byte red = Convert.ToByte(random.Next(0, 0xff)) 阅读全文
摘要:
public static string BashCommand(string cmd) { var escapedArgs = cmd.Replace("\"", "\\\""); var process = new Process() { StartInfo = new ProcessStart 阅读全文
摘要:
public static class InstalledPrograms { const string registry_key = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; public static List<string> 阅读全文