用CheckEdit演示 其他控件类推 CheckEdit AllSele = new CheckEdit(); AllSele.Location = new System.Drawing.Point(10, 16); AllSele.Text = "全选"; this.groupBox5.Controls.Add(AllSele); AllSele.CheckedChanged += new EventHandler(AllSele_CheckedChanged); int i =…
(小知识 - xml:可扩展的标记语言 html:超文本标记语言) 一.创建WebForm:新建→网站 此时文件夹中只有一个 config 文件,打开后 二.在项目下右键添加新项 在设计页面中打开 从工具箱中拖拽控件放入div中 双击按钮设置点击事件 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.U…
转:http://blog.csdn.net/miragesky2049/article/details/7204882 SharePoint2010沙盒解决方案基础开发--关于TreeView树形控件读取列表数据(树形导航)的webpart开发及问题 1.实现效果如下: 点击各个节点进入相应的链接 2.测试列表: 3.创建解决方案及webpart,代码如下所示 using System; using System.ComponentModel; using System.Web; using …