zoukankan      html  css  js  c++  java
  • Winform的RadioButton的使用

    QQ联系我百度BLOG

    新事件代码如下:

    复制代码
    //RadioButton新事件
    publicvoid radioBtn_CheckedChange(object sender, EventArgs e)
    {
    if (!((RadioButton)sender).Checked)
    {
    return;
    }
    string rechargeMoney =string.Empty;
    switch (((RadioButton)sender).Text.ToString())
    {
    case"10":
    rechargeMoney
    ="10";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    case"20":
    rechargeMoney
    ="20";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    case"30":
    rechargeMoney
    ="30";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    case"40":
    rechargeMoney
    ="40";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    case"50":
    rechargeMoney
    ="50";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    case"100":
    rechargeMoney
    ="100";
    this.lbl_money_tip.Text = rechargeMoney;
    break;
    default:
    break;
    }
    }
    复制代码

     如何使用这个事件呢?有两种方法

    1、在VS2008中依次选中每一个RadioButton右击--“属性”在属性中找到CheckedChange事件,为其指定为新写的事件。如下图:

    2、在初始化窗体的时候添加如下代码:

    复制代码
    public StartPage()
    {
    InitializeComponent();
    this.radio_Money_10.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    this.radio_Money_20.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    this.radio_Money_30.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    this.radio_Money_40.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    this.radio_Money_50.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    this.radio_Money_100.CheckedChanged +=new EventHandler(this.radioBtn_CheckedChange);
    }
    复制代码

    到此这个简单的方法就完成了,让我少写了不少的垃圾代码;可以举一反三。比如复选框被选中,传出去一个值等等。这也让我对委托有了更清晰了理解。

     
  • 相关阅读:
    20200601:百万级int数据量的一个array求和。
    20200602:千万级数据量的list找一个数据。
    20200531:假如Redis里面有1亿个key,其中有10w个key是以某个固定的已知的前缀开头的,如何将它们全部找出来?
    20200530:主从数据库不一致如何解决?
    [USACO06DEC]Milk Patterns G
    [HAOI2016]找相同字符
    [AHOI2013]差异
    [SCOI2012]喵星球上的点名
    [APIO2014]回文串
    [TJOI2015]弦论
  • 原文地址:https://www.cnblogs.com/baishiying/p/2724053.html
Copyright © 2011-2022 走看看