我正在使用VS C#2010,我正在创建一个WPF应用程序。我必须用不同的值表示一个矩阵,并使它们更容易理解我想使用ColorMap吧。我确实在Windows Forms中创建了一个项目(它有System.Drawings但WPF没有)。有没有办法创建它或通过创建我自己的“库”来调整它?
但是我还想在栏上设置范围。如果它有帮助,这里是使用Windows窗体中的ColorMap的代码(它在WPF中不起作用):
namespace Example1_8
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
SetStyle(ControlStyles.ResizeRedraw, true);
this.BackColor = Color.White;
this.Width = 340;
this.Height = 340;
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
int width = 30;
int height = 128;
int y = 0;
// Create opaque color maps with alpha = 255:
ColorMap cm = new ColorMap();
DrawColorBar(g, 10 + 4 * 40, y, width, height, cm, "Jet");
}
private void DrawColorBar(Graphics g, int x, int y, int width, int height,
ColorMap map, string str)
{
int[,] cmap = new int[64, 4];
switch (str)
{
case "Jet":
cmap = map.Jet();
break;
}
int ymin = 0;
int ymax = 32;
int dy = height / (ymax - ymin);
int m = 64;
for (int i = 0; i < 32; i++)
{
int colorIndex = (int)((i - ymin) * m / (ymax - ymin));
SolidBrush aBrush = new SolidBrush(Color.FromArgb(
cmap[colorIndex, 0], cmap[colorIndex, 1],
cmap[colorIndex, 2], cmap[colorIndex, 3]));
g.FillRectangle(aBrush, x, y + i * dy, width, dy);
}
}
}
}
答案 0 :(得分:1)
您需要添加对项目的引用。右键点击Refrences
=&gt; Add Reference...
。在Assemblies
类型System.Drawing
中,将其包含在您的项目中。然后只需添加所需的命名空间。 ColorMap
类位于System.Drawing.Imaging
。