资源简介
Visual Studio 2010——C#的ListBox控件的使用,工程源码。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace testListBoxApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnDelOne_Click(object sender EventArgs e)
{
if (lstGoods.SelectedIndex >= 0)
{
lstGoods.Items.RemoveAt(lstGoods.SelectedIndex);
}
}
private void btnDelAll_Click(object sender EventArgs e)
{
lstGoods.Items.Clear();
}
private void btnAddOne_Click(object sender EventArgs e)
{
if (txtGoodsName.Text != ““)
{
lstGoods.Items.Add(txtGoodsName.Text);
txtGoodsName.Text = ““;
}
else
{
MessageBox.Show(“Please input the Name“);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1380 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties\AssemblyInfo.cs
文件 5612 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties\Resources.resx
文件 2876 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties\Resources.Designer.cs
文件 249 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties\Settings.settings
文件 1097 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties\Settings.Designer.cs
文件 1091 2013-03-30 09:24 testListBoxApp\testListBoxApp\Form1.cs
文件 5497 2013-03-30 09:24 testListBoxApp\testListBoxApp\Form1.Designer.cs
文件 495 2013-03-30 09:05 testListBoxApp\testListBoxApp\Program.cs
文件 3687 2013-03-30 09:23 testListBoxApp\testListBoxApp\testListBoxApp.csproj
文件 490 2010-03-17 22:39 testListBoxApp\testListBoxApp\bin\Debug\testListBoxApp.vshost.exe.manifest
文件 11600 2013-03-30 09:37 testListBoxApp\testListBoxApp\bin\Debug\testListBoxApp.vshost.exe
文件 9728 2013-03-30 09:24 testListBoxApp\testListBoxApp\bin\Debug\testListBoxApp.exe
文件 26112 2013-03-30 09:24 testListBoxApp\testListBoxApp\bin\Debug\testListBoxApp.pdb
文件 2152 2013-03-30 09:05 testListBoxApp\testListBoxApp\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6232 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 180 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\testListBoxApp.Form1.resources
文件 180 2013-03-30 09:23 testListBoxApp\testListBoxApp\obj\x86\Debug\testListBoxApp.Properties.Resources.resources
文件 264 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\GenerateResource.read.1.tlog
文件 654 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\GenerateResource.write.1.tlog
文件 26112 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\testListBoxApp.pdb
文件 9728 2013-03-30 09:24 testListBoxApp\testListBoxApp\obj\x86\Debug\testListBoxApp.exe
文件 775 2013-03-30 09:37 testListBoxApp\testListBoxApp\obj\x86\Debug\testListBoxApp.csproj.FileListAbsolute.txt
文件 5817 2013-03-30 09:24 testListBoxApp\testListBoxApp\Form1.resx
文件 884 2013-03-30 09:05 testListBoxApp\testListBoxApp.sln
..A..H. 18944 2013-03-30 09:37 testListBoxApp\testListBoxApp.suo
目录 0 2013-03-30 09:05 testListBoxApp\testListBoxApp\obj\x86\Debug\TempPE
目录 0 2013-03-30 09:05 testListBoxApp\testListBoxApp\obj\x86\Debug
目录 0 2013-03-30 09:05 testListBoxApp\testListBoxApp\bin\Debug
目录 0 2013-03-30 09:05 testListBoxApp\testListBoxApp\obj\x86
目录 0 2013-03-30 09:05 testListBoxApp\testListBoxApp\Properties
............此处省略7个文件信息
- 上一篇:ASP.NET教务管理系统源代码
- 下一篇:数据库课设:教室管理系统
相关资源
- 开源项目图片浏览查看wpf编码
- WinForm连接SQLServer 一份C#小代码
- 自动网络时间同步小工具
- Native Wifi C#
- C# openGL 纹理贴图
- C#socket通信调用Brother打印机客户端和
- c# api帮助文档
- ASP.NET写的转盘抽奖程序
- C#实现老板键功能(源码)
- 一个用C#绘制的动态时钟自定义控件
- C#单片机控制直流电机源码(含电路原
- C#编写的多线程多主机端口扫描程序
- 财务管理系统程序(c#源代码)
- 用大津阈值Otsu Thresholding实现的阈值分
- C#抓包程序含源代码
- c#监听指定端口的UDP信息
- C#TCP通信收藏
- C#控件大全——按照用途分类详细介绍
- asp.net c# 自动创建SqlServer数据库实现
- c#实现的图书管理系统
- Warshall算法C#
- C#波形控件升级版
- 上位机监控软件MODBUSC#
- 斑马条码打印机EPL打印控件,js c# 可
- C#消息提示框,不需用户点确定,提醒
- c#实现局域网服务端向客户端内多文件
- C#中使用双缓冲以及BitBlt提高GDI+绘图
- C#解线性方程组源代码
- 基于asp.net的网页计算器简单实现
- C#vs2010仪表盘(源码)
评论
共有 条评论