我正在尝试在内存中创建一个图像,以便我可以组合两个或多个透明图像并将它们作为位图呈现在用户控件的图片框中。
我的开箱码:
System.Drawing.Image Beat = new System.Drawing.Image()
导致“无法创建抽象类或接口‘System.Drawing.Image’的实例”
谁能告诉我为什么?
我正在使用以下指令(以排除歧义)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
非常感谢
担