X3

RedSky

导航

2020年5月13日 #

c# ActiveMQ的使用

摘要: /// <sumary>/// 接收方/// </sumary>public void StartClient() { var factory = new NMSConnectionFactory(new Uri("activemq:failover:(tcp://localhost:61616/? 阅读全文

posted @ 2020-05-13 14:38 HotSky 阅读(726) 评论(0) 推荐(0) 编辑

WPF将窗体设置为桌面背景【动态桌面】

摘要: #region MyRegion private IntPtr programIntPtr = IntPtr.Zero; bool inited { get; set; } public void Init() { try { if (inited) return; // 通过类名查找一个窗口,返回 阅读全文

posted @ 2020-05-13 10:32 HotSky 阅读(1060) 评论(0) 推荐(0) 编辑

2020年1月14日 #

WPF Canvas子控件拖拽行为,以及ListBox+Canvas场景

摘要: 1 public class DragMoveBehavior : Behavior<UIElement> { Window window; Canvas parent; bool isDown; Point prePosition = new Point(); public Type Target 阅读全文

posted @ 2020-01-14 17:48 HotSky 阅读(1029) 评论(2) 推荐(0) 编辑

2019年12月14日 #

BitmapSource

摘要: 来自:https://stackoverflow.com/questions/8311805/bitmapsource-copypixels-byte-bitmapsource-how-to-do-this-simple 阅读全文

posted @ 2019-12-14 17:28 HotSky 阅读(603) 评论(0) 推荐(0) 编辑

2019年8月21日 #

WPF 控件生命周期

摘要: > BeginInit > EndInit > OnInitialized > MeasureOverride > ArrangeOverride > GetLayoutClip > OnRender > OnRenderSizeChanged > MeasureOverride > Arrange 阅读全文

posted @ 2019-08-21 09:51 HotSky 阅读(1247) 评论(0) 推荐(1) 编辑

2019年6月6日 #

WPF分页控件

摘要: 1.XML 2:C# 阅读全文

posted @ 2019-06-06 14:43 HotSky 阅读(748) 评论(0) 推荐(0) 编辑

2019年5月31日 #

Anroid图标尺寸

摘要: mipmap-hdpi mipmap-mdpi mipmap-xhdpi mipmap-xxhdpi mipmap-xxxhdpi 72x72 48x48 96x96 144x144 192x192 阅读全文

posted @ 2019-05-31 15:34 HotSky 阅读(154) 评论(0) 推荐(0) 编辑

2019年4月10日 #

C# ico转png

摘要: class Program { static void Main(string[] args) { Console.WriteLine("ICO文件转PNG"); string path = null; bool got = false; while (... 阅读全文

posted @ 2019-04-10 14:59 HotSky 阅读(1276) 评论(1) 推荐(0) 编辑

2019年3月25日 #

WPF Bitmap转BitmapSource,Image

摘要: //引用:using System.Windows.Interop; //Imagingusing System.Drawing; //Bitmap public static Imaging.BitmapSource ConvertToBitmapSource(Bitmap btmap) { return Imaging.CreateBitmapSourceFromHBitmap(btm... 阅读全文

posted @ 2019-03-25 16:13 HotSky 阅读(1631) 评论(0) 推荐(0) 编辑

2019年2月27日 #

Flutter笔记 Column和Row

摘要: MainAxisSize: 控制自己的布局方式 MainAxisSize: 控制自己的布局方式 MainAxisSize.min 默认值,Column和Row自适应children; MainAxisSize.max Column填充父控件竖屏,Row填充父控件横屏;需要搭配MainAxisAlig 阅读全文

posted @ 2019-02-27 15:12 HotSky 阅读(6807) 评论(0) 推荐(0) 编辑