控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

如何在代码中动态添加按钮控件

作者:未知 出处:不详 2010年02月02日 阅读:

在这篇文章中,我们将学习如何在winform中添加按钮。我们可以在设计视图里添加按钮控件,也可以在代码中动态添加按钮控件,下面的代码显示了如何在winform中动态添加一个按钮控件。

using System;;
using System.ComponentModel;;
using System.WinForms;;
using System.Drawing;;

public class MenuTest :Form {
private MainMenu mainMenu;;
private ContextMenu popUpMenu;;
public MenuTest() {
mainMenu = new MainMenu();;
popUpMenu =new ContextMenu();;
popUpMenu.MenuItems.Add("Hello",new EventHandler(pop_Clicked));;
this.ContextMenu = popUpMenu;;
MenuItem File = mainMenu.MenuItems.Add("&File");;
File .MenuItems.Add(new MenuItem("&New",new EventHandler(this.FileNew_clicked),Shortcut.CtrlN));;
File .MenuItems.Add(new MenuItem("&Open",new EventHandler(this.FileOpen_clicked),Shortcut.CtrlO));;
File .MenuItems.Add(new MenuItem("&Exit",new EventHandler(this.FileExit_clicked),Shortcut.CtrlX));;
this.Menu=mainMenu;;
MenuItem About = mainMenu.MenuItems.Add("&About");;
About.MenuItems.Add(new MenuItem("&About",new EventHandler(this.About_clicked),Shortcut.CtrlA));;
this.Menu=mainMenu;;
mainMenu.GetForm().BackColor = Color.Indigo ;;

}
private void FileExit_clicked(object sender, EventArgs e) {

   this.Close();;

   }
private void FileNew_clicked(object sender, EventArgs e) {

   MessageBox.Show("New","MENU_CREATION",MessageBox.IconInformation);;

   }
private void FileOpen_clicked(object sender, EventArgs e) {

   MessageBox.Show("Open","MENU_CREATION",MessageBox.IconInformation);;

   }
private void pop_Clicked(object sender, EventArgs e) {

   MessageBox.Show("Popupmenu","MENU_CREATION",MessageBox.IconInformation);;

   }
private void About_clicked(object sender, EventArgs e) {

   MessageBox.Show("G.GNANA ARUN GANESH","ggarung@rediffmail.com",MessageBox.IconInformation);;

   }
public static void Main(string[] args) {

  Application.Run(new MenuTest());;

   }
}                                                           
                                                            【注:本文由控件中国网转载】

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统