VB.NET编程入门级经典教材 清晰版PDF
2023-01-28 15:23:50 5.29MB VB.NET .NET 游戏编程
1
贪吃蛇游戏,源程序+源代码 完整版 直接下载直接用
2021-12-10 20:12:13 71KB VB.NET 小游戏 程序
1
能够在vs2010以上的版本执行,直接可以执行。
2021-06-01 14:27:25 893B vb.net 迷宫游戏
1
vb.net是我在大学本科时做的游戏,代码 程序都有,很全,是我自己做的,下载后直接能用
2021-05-13 14:15:22 3.55MB VB.NET 小游戏
1
用VB.NET做的小游戏--打地鼠 Public Class Form1 Inherits System.Windows.Forms.Form Dim pic As New PictureBox Dim goal As Integer Dim i As Integer Dim j As Integer Dim xx1() As Integer = {135, 277, 417} Dim xx2() As Integer = {157, 367} Dim xx3() As Integer = {32, 251, 482} Dim timer As Double = 1 Dim count As Integer '计时器跳动次数 Dim ifclick As Boolean Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Text = "小游戏" Me.Size = New Size(650, 465) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Timer1.Interval = 600 Timer1.Enabled = True Button2.Visible = True End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If Button2.Text = "暂停" Then Button2.Text = "继续" Timer1.Enabled = False PictureBox1.Enabled = False ElseIf Button2.Text = "继续" Then Button2.Text = "暂停" Timer1.Enabled = True PictureBox1.Enabled = True End If End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Me.Close() End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ifclick = False PictureBox1.Enabled = True If timer = 0 Then Timer1.Enabled = False MsgBox("游戏结束,您的得分:" + goal.ToString) Button3.Visible = False Exit Sub End If addpic() timer = 10 - count * 0.5
2021-05-12 19:36:09 402KB 小游戏 VB.NET 打地鼠
1
VB.NET五子棋
2021-05-12 18:58:32 25KB VB.NET 五子棋 游戏
1
用VB.NET编写的生命游戏,是一个很经典的程序!!! 希望大家支持
2019-12-21 21:01:33 55KB VB.NET
1
VB.NET程序 撞撞球,完整版源程序和代码,下载后直接能用
2019-12-21 19:43:47 40KB VB.NET小游戏 代码
1
网上下载的 2048 游戏 用vb.net做的
2019-12-21 19:26:37 41KB 2048
1