[英] draw

查看:95
本文介绍了画的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何进行不限数量的圈子?

how do I make an unlimited number of circles?

这是我的代码.当我尝试做其他事情时,圆圈消失了.

this is the code I have. And when I try to do something else the circles disappear. 

  Private Sub Form1_MouseDown(作为对象发送,作为MouseEventArgs发送)处理Me.MouseDown

 Private Sub Form1_MouseDown(sender As Object, e As MouseEventArgs) Handles Me.MouseDown

用笔将myPen昏暗
        myPen =新笔(Drawing.Color.Blue,4)
      将myGraphics视作图形= Me.CreateGraphics
       myGraphics.DrawEllipse(myPen,MousePosition.X-5,MousePosition.Y-25,10,10)

 Dim myPen As Pen
        myPen = New Pen(Drawing.Color.Blue, 4)
        Dim myGraphics As Graphics = Me.CreateGraphics
        myGraphics.DrawEllipse(myPen, MousePosition.X - 5, MousePosition.Y - 25, 10, 10)

结束子

Donny

推荐答案

我如何进行不限数量的圈子?

how do I make an unlimited number of circles?

这是我的代码.当我尝试做其他事情时,圆圈消失了.

this is the code I have. And when I try to do something else the circles disappear. 

用笔将myPen昏暗
        myPen =新笔(Drawing.Color.Blue,4)
      将myGraphics视作图形= Me.CreateGraphics
       myGraphics.DrawEllipse(myPen,MousePosition.X-5,MousePosition.Y-25,10,10)

 Dim myPen As Pen
        myPen = New Pen(Drawing.Color.Blue, 4)
        Dim myGraphics As Graphics = Me.CreateGraphics
        myGraphics.DrawEllipse(myPen, MousePosition.X - 5, MousePosition.Y - 25, 10, 10)


这篇关于画的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆