所以这应该很简单,但我已经看了一些类似的问题而无法找到答案。
我有一个Form1
班级和一个Resistor
班级。在Form1
类中,我有一个Panel
(我将名称更改为Canvas
),在Canvas_Paint
方法中,我从Draw
调用方法Resistor
{1}}类,但没有绘制任何东西。
Form1 Class:
public partial class Form1 : Form
{
static float lineWidth = 2.0F;
static float backgroundLineWidth = 2.0F;
static Pen pen = new Pen(Color.Yellow, lineWidth);
static Pen backgroundPen = new Pen(Color.LightGray, backgroundLineWidth);
private bool drawBackground = true;
private List<Resistor> resistors = new List<Resistor>();
public Form1()
{
InitializeComponent();
}
private void Canvas_Paint(object sender, PaintEventArgs e)
{
if (drawBackground)
{
Console.WriteLine("Drawing background...");
Draw_Background(e.Graphics, backgroundPen);
}
if (resistors != null)
{
foreach (Resistor r in resistors)
{
//This does not work.
r.Draw(e.Graphics);
}
}
//The line below draws the line fine.
e.Graphics.DrawLine(pen, 0, 0, 100, 100);
}
private void Draw_Background(Graphics g, Pen pen)
{
for (int i = 0; i < Canvas.Width; i += 10)
{
g.DrawLine(pen, new Point(i, 0), new Point(i, Canvas.Height));
}
for (int j = 0; j < Canvas.Height; j += 10)
{
g.DrawLine(pen, new Point(0, j), new Point(Canvas.Width, j));
}
drawBackground = false;
}
private void AddResistor_Click(object sender, EventArgs e)
{
resistors.Add(new Resistor());
Console.WriteLine("Added a Resistor...");
}
}
电阻器等级:
public class Resistor
{
static private Point startingPoint;
static Pen defaultPen;
private Point[] points;
public Resistor()
{
startingPoint.X = 100;
startingPoint.Y = 100;
defaultPen = new Pen(Color.Yellow, 2.0F);
points = new Point[] {
new Point( 10, 10),
new Point( 10, 100),
new Point(200, 50),
new Point(250, 300)
};
}
public void Draw(Graphics g)
{
//Is this drawing somewhere else?
g.DrawLines(defaultPen, points);
}
}
我查看了这个question,建议在这种情况下将e.Graphics
对象传递给Draw
类中的Resistor
方法但不起作用。
我是C#的新手,所以我真的很感激任何帮助。
编辑: 如果你想下载并尝试一下,我把项目放在github上。
编辑:
所以问题是单击按钮后没有调用面板Paint方法。解决方案是在Canvas.Invalidate
方法
AddResistor_Click
答案 0 :(得分:1)
在调试器中运行您的代码并在事件处理程序中放置一个断点,您将能够检查您的代码是否正在尝试绘制某些内容。如果没有,那么你的事件处理程序是否被调用?你的电阻列表中有什么东西吗?如果它是绘图但你没有看到任何东西,那么你没有使用正确的图形上下文,或者你没有在控件的可见部分绘制东西,或者你正在用随后的绘图代码绘制东西。< / p>
答案 1 :(得分:0)
问题在于,当单击按钮时,面板的绘制方法没有被调用,因为我认为绘制方法总是被调用。解决方案是在Canvas.Invalidate
方法中添加AddResistor_Click
。
private void AddResistor_Click(object sender, EventArgs e)
{
resistors.Add(new Resistor());
Console.WriteLine("Added a Resistor...");
Canvas.Invalidate();
}