zoukankan
html css js c++ java
c#+winform+combobox+动态生成控件,根据选择的内容 Virus
根据combobox选择的内容生成控件,窗体添加一个combobox和一个panel,在panel中添加控件,方便添加其他控件之前可以清除以前的控件
using
System;
using
System.Collections.Generic;
using
System.ComponentModel;
using
System.Data;
using
System.Drawing;
using
System.Text;
using
System.Windows.Forms;
using
System.Data.SqlClient;
namespace
WindowsApplication21
{
public
partial
class
Form1 : Form
{
public
Form1()
{
InitializeComponent();
}
private
void
Form1_Load(
object
sender, EventArgs e)
{
this
.comboBox1.Items.Add(
"
tcp
"
);
this
.comboBox1.Items.Add(
"
udp
"
);
}
private
void
comboBox1_SelectedIndexChanged(
object
sender, EventArgs e)
{
this
.panel1.Controls.Clear();
Label lbl
=
new
Label();
this
.panel1.Controls.Add(lbl);
lbl.Text
=
comboBox1.SelectedItem.ToString();
lbl.Name
=
"
lbl
"
+
lbl.Text;
lbl.Top
=
this
.panel1.Top;
lbl.Width
=
50
;
lbl.Height
=
20
;
TextBox tb
=
new
TextBox();
this
.panel1.Controls.Add(tb);
tb.Text
=
""
;
tb.Name
=
"
tb
"
+
lbl.Text;
tb.Top
=
lbl.Top;
tb.Left
=
lbl.Right
+
10
;
tb.Width
=
200
;
tb.Height
=
20
;
}
}
public
class
ListItem
{
private
string
textField;
public
string
TextField
{
get
{
return
textField; }
set
{ textField
=
value; }
}
private
string
valueField;
public
string
ValueField
{
get
{
return
valueField; }
set
{ valueField
=
value; }
}
}
//
下面绑定
}
【Blog】
http://virusswb.cnblogs.com/
【MSN】
jorden008@hotmail.com
【说明】转载请标明出处,谢谢
反馈文章质量,你可以通过快速通道评论:
查看全文
相关阅读:
redis 系列27 Cluster高可用 (2)
redis 系列26 Cluster高可用 (1)
redis 系列25 哨兵Sentinel (高可用演示 下)
redis 系列24 哨兵Sentinel (中)
redis 系列23 哨兵Sentinel (上)
(网页)jQuery判断checkbox是否选中的方法
(后端)swagger
(其他)2018下半年目标
(后端)Sql Server日期查询-SQL查询今天、昨天、7天内、30天(转)
(网页)HTML中INPUT type="date"标签如何赋值注意问题(转)
原文地址:https://www.cnblogs.com/virusswb/p/1197695.html
最新文章
科技类、企业类网站导航
创意网站导航和轮播图欣赏
商城类网站头部导航
餐饮类网站滑动导航
配置vue的jsx写法以及postcss
webpack-dev-server的配置和使用
[Spring]IoC容器之进击的注解
Spring整合Ehcache管理缓存
spring 4 升级踩雷指南
OSGi 基本原理
热门文章
[JSP]JSP 简介
[Servlet] 初识Servlet
[JavaEE笔记]Cookie
[JSP]自定义标签库taglib
认识Java Core和Heap Dump
asp.net core 系列 3 依赖注入服务
asp.net core 系列 2 启动Startup类介绍
nginx系列 3 nginx.conf介绍(1)
nginx系列 2 概述
asp.net core 系列 1 概述
Copyright © 2011-2022 走看看