我是编程和 C# 的初学者。我想做一种有趣的库存应用程序。(我一定是个无聊的人)我正在用字典来保存我的价值观。我在表单上的布局使用一个文本框来输入“条形码”(只是我编造的 110011”),一个列表框来显示输入的正确名称和价格(“名称 - 价格”),以及一个标签,显示扫描的所有物品的总价。我猜有点像一家商店。我试过使用 Split 和 Sum 但没有得到任何回报。标签仍然显示 0.00,列表框只显示 110011 和文本框.. 我猜实际剂量它应该做的。当我运行代码时,没有错误,所以它按预期运行。到目前为止,这是我的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace smart_cart
{
public partial class List : Form
{
private object itemlist;
private object sum;
public object Next { get; private set; }
public object ListBox1 { get; private set; }
public List()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void label1_Click_1(object sender, EventArgs e)
{
label1.Text = sum.ToString();
}
private void textBox1_KeyPress_1(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
this.textBox1.AppendText((sender as ComboBox).Text);
e.Handled = true;
{
}
}
private void listBox1_KeyPress(object sender, KeyPressEventArgs e)
{
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
listBox1.Items.Add(textBox1.Text);
}
}
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Remove(listBox1.SelectedItem);
}
感谢您的任何帮助和建议。在等待重播的同时,我将继续寻找答案。
慕雪6442864
狐的传说
梵蒂冈之花
相关分类