在网上看到BitmapSource和WriteableBitmap一些类听说是用 using System.Windows.Media.Imaging:可是我发现VS中没有什么System.Windows.Media.Imaging之类的框架,这就苦逼了,在网上也找不到,无意间发现原来引用不叫System.Windows.Media.Imaging,而是 PresentationCore 只需要在引用-->程序集-->框架-->PresentationCore找到这个就行了,另外我发现u…
保存图片控件上的图片到本地 出现错误:无法将类型为“System.Windows.Media.Imaging.BitmapFrameDecode”的对象强制转换为类型“System.Windows.Media.Imaging.BitmapImage”. try { System.Windows.Controls.MenuItem menuitem = sender as System.Windows.Controls.MenuItem; BitmapImage bitmap = (BitmapI…
// Read byte[] from png file BinaryReader binReader = new BinaryReader(File.Open(filepath, FileMode.Open)); FileInfo fileInfo = new FileInfo(filepath); byte[] bytes = binReader.ReadBytes((int)fileInfo.Length); binReader.Close(); // Init bitmap Bitmap…
场景:添加ComboBox样式,界面卡死,日志异常文件如下: -- ::, | ERROR | System.InvalidCastException: 无法将类型为“System.Windows.Media.Color”的对象强制转换为类型“System.Windows.Media.Brush”. 在 System.Windows.Shapes.Shape.get_Stroke() 在 System.Windows.Shapes.Shape.get_IsPenNoOp() 在 System.W…
一.绘制虚线的方法 GDI绘制,使用的是System.Drawing.Pen Pen pen = new Pen(Color.Red, 1);            pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;            pen.DashPattern = new float[] { 5, 5 };            Graphics gh = this.CreateGraphics();         …
错误信息: 没有足够的内存继续执行程序 在 System.Windows.Media.Composition.DUCE.Channel.SyncFlush() 在 System.Windows.Interop.HwndTarget.UpdateWindowSettings(Boolean enableRenderTarget, Nullable` channelSet) 在 System.Windows.Interop.HwndTarget.UpdateWindowPos(IntPtr lPar…
造成原因:此问题的根本原因是.NET Framework January 2018 Rollup(KB4055002)与已安装的.NET Framework 4.7.1产品版本之间的MSI安装交互.Rollup安装程序意外覆盖了GlobalUserInterface.CompositeFont文件的4.7.1版本.这会导致需要此字体文件的                          WPF操作失败. 解决方法:安装KB4074906 或者覆盖下现有系统字体 造成原因2:.net 3.5兼容…
这里使用了一个进度条来展示, 前段代码: <Window x:Class="TimerTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="> <Grid> <Button…
1. 右键VS工具箱的空白处; 2. 打开工具箱, 选择com组件→找到windows media player 3. 如果这里没有发现 windows Media Player怎么办? , 以win10为例说明, 打开小娜搜一搜, 4. 双击后发现打不开? 打开控制面板→程序→启动或关闭windows功能→把下图的两个√去掉 5. 然后必须重启计算机, 重启后, 再到那里把两个√给勾上, 然后确定, 他会自动安装; 6. 安装完成后, 就会在com组件中发现windows media play…
错误 CS0012: 类型“System.Windows.Markup.IUriContext”在未被引用的程序集中定义.必须添加对程序集“System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”的引用.   解决方法: 添加引用——System.Xaml.dll (System.Xaml)…