-
大小: 46KB文件类型: .zip金币: 2下载: 2 次发布日期: 2021-06-11
- 语言: C#
- 标签: C# winform datagridview 下拉框
资源简介
C# winform datagridview 里的下拉框中 既可以从下拉框里选择数据,也可以让客户自己手动往里输入数据,
代码片段和文件信息
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 WinFormAPP
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
BindComboxItems();
this.dataGridView1.EditingControlShowing += new DataGridViewEditingControlShowingEventHandler(EnabledComboBoxWrite);
}
private void EnabledComboBoxWrite(object sender DataGridViewEditingControlShowingEventArgs e)
{
ComboBox cb = e.Control as ComboBox;
if (cb != null)
{
cb.DropDownstyle = ComboBoxstyle.DropDown;
cb.Validating += new System.ComponentModel.CancelEventHandler(cb_Validating);
}
}
void cb_Validating(object sender System.ComponentModel.CancelEventArgs e)
{
DataGridViewComboBoxEditingControl cbo = (DataGridViewComboBoxEditingControl)sender;
if (cbo.Text.Trim() == string.Empty) return;
DataGridView grid = cbo.EditingControlDataGridView;
object value = cbo.Text;
if (cbo.Items.IndexOf(value) == -1)
{
DataGridViewComboBoxColumn cboCol = (DataGridViewComboBoxColumn)grid.Columns[grid.CurrentCell.ColumnIndex];
cbo.Items.Add(value);
cboCol.Items.Add(value);
grid.CurrentCell.Value = value;
}
}
private void BindComboxItems()
{
DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn)dataGridView1.Columns[0];
col.Items.Add(““);
col.Items.Add(“aaa“);
col.Items.Add(“bbb“);
col.Items.Add(“ccc“);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-12-13 13:19 WinFormAPP\
目录 0 2013-12-13 13:20 WinFormAPP\WinFormAPP\
文件 872 2013-12-13 13:19 WinFormAPP\WinFormAPP.sln
文件 18944 2013-12-24 16:35 WinFormAPP\WinFormAPP.suo
目录 0 2013-12-13 13:19 WinFormAPP\WinFormAPP\bin\
目录 0 2013-12-17 17:21 WinFormAPP\WinFormAPP\bin\Debug\
文件 9728 2013-12-24 16:34 WinFormAPP\WinFormAPP\bin\Debug\WinFormAPP.exe
文件 26112 2013-12-24 16:34 WinFormAPP\WinFormAPP\bin\Debug\WinFormAPP.pdb
文件 11600 2013-12-24 16:35 WinFormAPP\WinFormAPP\bin\Debug\WinFormAPP.vshost.exe
文件 490 2010-03-17 22:39 WinFormAPP\WinFormAPP\bin\Debug\WinFormAPP.vshost.exe.manifest
文件 1918 2013-12-24 16:34 WinFormAPP\WinFormAPP\Form1.cs
文件 2788 2013-12-24 16:23 WinFormAPP\WinFormAPP\Form1.Designer.cs
文件 6001 2013-12-24 16:23 WinFormAPP\WinFormAPP\Form1.resx
目录 0 2013-12-13 13:19 WinFormAPP\WinFormAPP\obj\
目录 0 2013-12-13 13:19 WinFormAPP\WinFormAPP\obj\x86\
目录 0 2013-12-24 16:34 WinFormAPP\WinFormAPP\obj\x86\Debug\
文件 4440 2013-12-17 17:20 WinFormAPP\WinFormAPP\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6323 2013-12-24 16:34 WinFormAPP\WinFormAPP\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 352 2013-12-24 16:23 WinFormAPP\WinFormAPP\obj\x86\Debug\GenerateResource.read.1.tlog
文件 814 2013-12-24 16:23 WinFormAPP\WinFormAPP\obj\x86\Debug\GenerateResource.write.1.tlog
文件 7897 2013-12-17 17:21 WinFormAPP\WinFormAPP\obj\x86\Debug\ResolveAssemblyReference.cache
目录 0 2013-12-13 13:19 WinFormAPP\WinFormAPP\obj\x86\Debug\TempPE\
文件 1021 2013-12-24 16:35 WinFormAPP\WinFormAPP\obj\x86\Debug\WinFormAPP.csproj.FileListAbsolute.txt
文件 9728 2013-12-24 16:34 WinFormAPP\WinFormAPP\obj\x86\Debug\WinFormAPP.exe
文件 180 2013-12-24 16:23 WinFormAPP\WinFormAPP\obj\x86\Debug\WinFormAPP.Form1.resources
文件 26112 2013-12-24 16:34 WinFormAPP\WinFormAPP\obj\x86\Debug\WinFormAPP.pdb
文件 180 2013-12-17 17:21 WinFormAPP\WinFormAPP\obj\x86\Debug\WinFormAPP.Properties.Resources.resources
文件 491 2013-12-13 13:19 WinFormAPP\WinFormAPP\Program.cs
目录 0 2013-12-13 13:19 WinFormAPP\WinFormAPP\Properties\
文件 1356 2013-12-13 13:19 WinFormAPP\WinFormAPP\Properties\AssemblyInfo.cs
文件 2871 2013-12-13 13:19 WinFormAPP\WinFormAPP\Properties\Resources.Designer.cs
............此处省略4个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- SignalR 2.0 Winform版
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
评论
共有 条评论