C#绘图为什么在窗体界面上显示不出来
1个回答
展开全部
估计是没有将绘图方法放在Pain事件处理方法中。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// 重载OnPaint方法
// 或者直接对Form1_Paint事件处理方法编程
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.DrawEllipse(Pens.Red,
new Rectangle(10,10, 100, 100));
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询