Visual Studio 2010旗舰版的VB.NET版本仓库库存管理系统的窗体应用程序

Public Class Form1

' 定义商品类
Class Commodity
    Public Name As String
    Public Quantity As Integer
    Public Price As Double
End Class

' 商品列表
Private commodities As New List(Of Commodity)

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    ' 初始化一些商品数据
    commodities.Add(New Commodity With {.Name = "商品 1",.Quantity = 100,.Price = 20.0})
    commodities.Add(New Commodity With {.Name = "商品 2",.Quantity = 80,.Price = 30.0})
    commodities.Add(New Commodity With {.Name = "商品 3",.Quantity = 120,.Price = 25.0})

    ' 初始化界面元素
    Button1.Text = "添加商品"
    Button2.Text = "查看库存"
    Button3.Text = "出库商品"
    Button4.Text = "继续"
    Button5.Text = "退出"
End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    ' 添加商品的逻辑
    Dim name As String = InputBox("请输入商品名称")
    Dim quantity As Integer = CInt(InputBox("请输入商品数量"))
    Dim price As Double = CDbl(InputBox("请输入商品价格"))

    Dim newCommodity As New Commodity
    newCommodity.Name = name
    newCommodity.Quantity = quantity
    newCommodity.Price = price

    commodities.Add(newCommodity)

    MessageBox.Show("商品添加成功!")
End Sub

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    ' 查看库存的逻辑
    Dim listText As String = "库存列表:" & vbCrLf
    For Each commodity In commodities
        listText &= $"名称:{commodity.Name},数量:{commodity.Quantity},价格:{commodity.Price}" & vbCrLf
    Next
    MessageBox.Show(listText)
End Sub

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
    ' 出库商品的逻辑
    Dim outName As String = InputBox("请输入要出库的商品名称")

    Dim foundCommodity As Commodity = Nothing
    For Each commodity In commodities
        If commodity.Name = outName Then
            foundCommodity = commodity
            Exit For
        End If
    Next

    If foundCommodity IsNot Nothing Then
        Dim outQuantity As Integer = CInt(InputBox("请输入出库数量"))

        If outQuantity <= foundCommodity.Quantity Then
            foundCommodity.Quantity -= outQuantity
            MessageBox.Show($"出库成功,剩余数量:{foundCommodity.Quantity}")
        Else
            MessageBox.Show("库存不足,无法出库。")
        End If
    Else
        MessageBox.Show("未找到该商品。")
    End If
End Sub

Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
    ' 继续(返回主菜单)的逻辑
    MessageBox.Show("返回主菜单")
End Sub

Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
    ' 退出的逻辑
    Me.Close()
End Sub

End Class

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

EYYLTV

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值