Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > โปรแกรม GDI+ รบกวนช่วยแนะนำหน่อยนะครับ ด่วนมากเลย ผมติดอยู่นิดเดียว ช่วยหน่อยงับผม ขอบคุง



 

โปรแกรม GDI+ รบกวนช่วยแนะนำหน่อยนะครับ ด่วนมากเลย ผมติดอยู่นิดเดียว ช่วยหน่อยงับผม ขอบคุง

 



Topic : 056921



โพสกระทู้ ( 36 )
บทความ ( 0 )



สถานะออฟไลน์




จานสั่งเขียน gdi+
1.สร้างวงกลมแบบไร้รูป
2.ให้วงกลมวิ่งไปๆแบบสุ่มพอชนกับขอบฟอร์มให้เด้งกลับ
3.พอคลิกที่วงกลมให้วงกลมหายไป

ผมทำมาทั้งวันแล้วคับ แก้ไม่ได้ซักที ตรงเงื่อนไขที่3 ตอนคลิกที่วงกลมแล้วให้วงกลมหายไป มันหายนะครับแต่ คลิกเลยจากวงกลมไปข้างหลังมันก็หายเหมือนกัน อยากให้ช่วยทำให้คลิกแค่ในรูปวงกลมมันถึงหายแต่คลิกนอกวงกลมไม่หาย แบบนี้คับ ส่งพรุ่งนี้แล้วแงะ คิดไม่ออกแล้วครับ มือใหม่ง่ะคับ ขอบคุงมากงับ

Code (C#)
Public Class Form1
    Private dx As Integer
    Private dy As Integer
    Private x As Integer
    Private y As Integer
    Private ix As Integer
    Private iy As Integer
    Private ballWidth As Integer = 50
    Private ballHeigth As Integer = 50
    Dim RandomClass As New Random()
    Dim g As Graphics = Me.CreateGraphics
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Timer1.Interval = 100
        Dim rnd As New Random
        dx = rnd.Next(1, 4)
        dy = rnd.Next(1, 4)
        x = rnd.Next(0, Me.ClientSize.Width - ballWidth)
        y = rnd.Next(0, Me.ClientSize.Height - ballWidth)
        Me.SetStyle(ControlStyles.AllPaintingInWmPaint Or ControlStyles.UserPaint Or ControlStyles.DoubleBuffer, True)
        Me.UpdateStyles()
    End Sub
    Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
        ix = e.X
        iy = e.Y
        If ix >= x - dx And iy >= y - dy Then
            Timer1.Stop()
            g.Clear(Me.BackColor)
        End If
    End Sub
    Private Sub Form1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
        Dim RandomNumber As Integer
        Dim randoms As Integer
        RandomNumber = RandomClass.Next(50, 55)
        randoms = RandomClass.Next(50, 55)
        e.Graphics.FillEllipse(Brushes.Black, x, y, randoms, RandomNumber)
        e.Graphics.DrawEllipse(Pens.Black, x, y, randoms, RandomNumber)
    End Sub
    Private Sub Timer1_Tick_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        x += dx
        If x < 0 Then
            dx = -dx
        ElseIf x + ballWidth > Me.ClientSize.Width Then
            dx = -dx
        End If
        y += dy
        If y < 0 Then
            dy = -dy
        ElseIf y + ballHeigth > Me.ClientSize.Height Then
            dy = -dy
        End If
        Me.Invalidate()
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Start()
    End Sub
End Class




Tag : .NET, Win (Windows App), Class Library, VB.NET, C#







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-03-06 19:48:16 By : Drewsn32 View : 1174 Reply : 1
 

 

No. 1



โพสกระทู้ ( 36 )
บทความ ( 0 )



สถานะออฟไลน์


ทำได้แล้วคับ โว้ย

Code (VB.NET)
Public Class Form1
    Dim RandomClass As New Random()
    Dim g As Graphics = Me.CreateGraphics
    Private dx As Integer
    Private dy As Integer
    Private x As Integer
    Private y As Integer
    Private ix As Integer
    Private iy As Integer
    Private ballWidth As Integer = 50
    Private ballHeigth As Integer = 50
    Dim RandomWidth As Integer
    Dim randomHeight As Integer
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Timer1.Interval = 100
        Dim rnd As New Random
        dx = rnd.Next(1, 4)
        dy = rnd.Next(1, 4)
        x = rnd.Next(0, Me.ClientSize.Width - ballWidth)
        y = rnd.Next(0, Me.ClientSize.Height - ballHeigth)
        Me.SetStyle(ControlStyles.AllPaintingInWmPaint Or ControlStyles.UserPaint Or ControlStyles.DoubleBuffer, True)
        Me.UpdateStyles()
    End Sub
    Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
        ix = e.X
        iy = e.Y
        Dim subX As Integer
        Dim subY As Integer
        If ix >= x And iy >= y Then
            subX = x + RandomWidth
            subY = y + randomHeight
            If ix <= subX And iy <= subY Then
                Timer1.Stop()
                g.Clear(Me.BackColor)
            End If
        End If
    End Sub
    Private Sub Form1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
        randomHeight = RandomClass.Next(50, 55)
        RandomWidth = RandomClass.Next(50, 60)
        e.Graphics.FillEllipse(Brushes.Black, x, y, RandomWidth, randomHeight)
        e.Graphics.DrawEllipse(Pens.Black, x, y, RandomWidth, randomHeight)
    End Sub
    Private Sub Timer1_Tick_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        x += dx
        If x < 0 Then
            dx = -dx
        ElseIf x + ballWidth > Me.ClientSize.Width Then
            dx = -dx
        End If
        y += dy
        If y < 0 Then
            dy = -dy
        ElseIf y + ballHeigth > Me.ClientSize.Height Then
            dy = -dy
        End If
        Me.Invalidate()
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Start()
    End Sub
End Class







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-06 22:07:31 By : Drewsn32
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : โปรแกรม GDI+ รบกวนช่วยแนะนำหน่อยนะครับ ด่วนมากเลย ผมติดอยู่นิดเดียว ช่วยหน่อยงับผม ขอบคุง
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่