| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 476 人关注过本帖
标题:C#
只看楼主 加入收藏
龙子
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2008-9-20
收藏
 问题点数:0 回复次数:4 
C#
C#
请教高手:在一个按钮中处理开始与结束两个事件,应该点做呢?
2008-10-08 18:11
小仙
Rank: 7Rank: 7Rank: 7
来 自:光之谷
等 级:贵宾
威 望:39
帖 子:1812
专家分:1
注 册:2008-8-8
收藏
得分:0 
比较笨的方法,你需要一个变量,全局的,来辨别是该结束还是该开始。在代码里头设置转换。


仁者乐膳,智者乐睡。我都爱~
2008-10-08 18:13
hellson
Rank: 2
来 自:北京
等 级:新手上路
威 望:4
帖 子:195
专家分:0
注 册:2008-9-1
收藏
得分:0 
程序代码:
/*

 * Created by SharpDevelop.

 * User: hellson

 * Date: 2008-10-8

 * Time: 17:00

 * 

 * To change this template use Tools | Options | Coding | Edit Standard Headers.

 */

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;

namespace draws
{
    /// <summary>
    /// Description of MainForm.
    /// </summary>
    public partial class MainForm
    {
        Form f = new Form();
        bool begin = true;
        [STAThread]
        public static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
        
        public MainForm()
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();
            label1.Text = "等待开始被按下";
            button1.Text ="开始";
            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //
        }
        
        private void Button1Click(object sender, EventArgs e)
        {
            if(begin)
                callbegin();
            else callend();
            begin = !begin;
        }
        
        void callbegin()
        {
            label1.Text = "等待<开始>被按下";
            button1.Text ="开始";
        }
        
        void callend()
        {
            label1.Text = "等待<停止>被按下";
            button1.Text ="停止";
        }
    }
}


only 参考

春了夏了秋冬了,来了来了又来了
相信我的帖子打开都很快,看我头像就知道了
2008-10-08 20:45
龙子
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2008-9-20
收藏
得分:0 
回复 3# hellson 的帖子
多谢帮忙!
2008-10-12 23:29
快速回复:C#
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025634 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved