我想:我在哪裏可以找到System.Windows.Media?媒體是不存在的
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using AviFile;
using ScreenShotDemo;
using System.Threading;
using System.Windows.
在我的新類,但在底部system.Windows。 沒有媒體
即時通訊使用visual c#2012和.net 4.5 試圖添加它作爲參考在.NET和COM中查找它,但它不存在。
的原因,我需要的是,在我的代碼,我的PixelFormat,它不是存在:
Bitmap bmpScreenShot = new Bitmap(currentScreen.Bounds.Width,
currentScreen.Bounds.Height,
PixelFormat.Format32bppArgb);
的PixelFormat不存在。
它看起來並不像你實際使用'System.Windows.Media'中的任何東西。 –
它看起來像你想混合使用WPF('System.Windows.Media')和WinForms('System.Drawing')API。你確定要這麼做嗎?剩下的代碼讓我懷疑你根本不想使用'System.Windows.Media'。 – CodesInChaos