我无法弄清楚为什么.FillRectangle对我不起作用。
此外,因为它没有任何例外,我没有想到它为什么会这样,所以我需要一些帮助:/
受影响的部分代码是
try
{
using (FileStream fileStream = File.OpenRead(filePath))
{
using (StreamReader streamReader = new StreamReader(fileStream, Encoding.UTF8, true, 1024))
{
String line;
int mW = Convert.ToInt32(Math.Round(this.Size.Width / 2d));
int mH = Convert.ToInt32(Math.Round(this.Size.Height / 2d));
SolidBrush myBrush;
myBrush = new SolidBrush(Color.Black);
PointF A = new PointF(0f, 0f);
Graphics g = this.CreateGraphics();
g.TranslateTransform(mW, mH);
while ((line = streamReader.ReadLine()) != null)
{
string[] points = line.Split(',');
A = new PointF((float)(Convert.ToDecimal(points[0])), ((float)(Convert.ToDecimal(points[1]))));
//A is defined correctly, as A.X and A.Y both have values
g.FillRectangle(myBrush, A.X, A.Y, 1f, 1f);
}
}
}
}
catch (Exception p)
{
MessageBox.Show(p.Message);
}
任何帮助都会受到超级赞赏,因为我对Grpahics的了解非常有限
提前致谢,
Rubén:)
答案 0 :(得分:2)
好的,这有很大帮助:D。谢谢!
将评论作为答案发布:
this.CreateGraphics
可能是罪魁祸首。这将绘制到表单刷新时被删除的临时表面。在Paint()事件中使用e.Graphics
,或者使用Graphics.FromImage()
绘制到位图并显示它。