首页 > 开发 > 综合 > 正文

C#教学经验谈(2):会跑的按钮

2024-07-21 02:18:06
字体:
来源:转载
供稿:网友
为了让学生对事件有一个初步的印象,特意设计了一个趣味程序,界面较简单,就是提一个简单的问题,要你点yes或no按钮来回答问题。但当你去点yes按钮的时候,这个yes按钮会满窗口的跑,不让你去点它。



  这个趣味程序是在教学过程中临时穿插进去的。使用这个程序的目的,是让学生对c#中对事件的处理有一个初步的印象,了解事件要经过注册和实现这两步,另外通过这个趣味程序,让学生了解random类和point类的使用。

  本程序的全部代码如下,请注意红字的代码,其余的代码都是设计器自动生成的。

using system;
using system.drawing;
using system.collections;
using system.componentmodel;
using system.windows.forms;
using system.data;

namespace loveme
{
/// <summary>
/// form1 的摘要说明。
/// </summary>
public class form1 : system.windows.forms.form
{
private system.windows.forms.label label1;
private system.windows.forms.button yesbutton;
private system.windows.forms.button nobutton;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private system.componentmodel.container components = null;

public form1()
{
//
// windows 窗体设计器支持所必需的
//
initializecomponent();

//
// todo: 在 initializecomponent 调用后添加任何构造函数代码
//
}

/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.dispose();
}
}
base.dispose( disposing );
}

#region windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void initializecomponent()
{
this.label1 = new system.windows.forms.label();
this.yesbutton = new system.windows.forms.button();
this.nobutton = new system.windows.forms.button();
this.suspendlayout();
//
// label1
//
this.label1.font = new system.drawing.font("monotype corsiva", 36f, system.drawing.fontstyle.italic, system.drawing.graphicsunit.point, ((system.byte)(0)));
this.label1.forecolor = system.drawing.color.forestgreen;
this.label1.location = new system.drawing.point(40, 72);
this.label1.name = "label1";
this.label1.size = new system.drawing.size(320, 80);
this.label1.tabindex = 0;
this.label1.text = "do you love me?";
//
// yesbutton
//
this.yesbutton.location = new system.drawing.point(56, 248);
this.yesbutton.name = "yesbutton";
this.yesbutton.tabindex = 1;
this.yesbutton.text = "yes";
this.yesbutton.click += new system.eventhandler(this.yesbutton_click);
this.yesbutton.mousemove += new system.windows.forms.mouseeventhandler(this.yesbutton_mousemove);
//
// nobutton
//
this.nobutton.location = new system.drawing.point(240, 248);
this.nobutton.name = "nobutton";
this.nobutton.tabindex = 1;
this.nobutton.text = "no";
this.nobutton.click += new system.eventhandler(this.nobutton_click);
//
// form1
//
this.autoscalebasesize = new system.drawing.size(6, 14);
this.clientsize = new system.drawing.size(400, 317);
this.controls.add(this.yesbutton);
this.controls.add(this.label1);
this.controls.add(this.nobutton);
this.name = "form1";
this.text = "想说爱我不容易";
this.resumelayout(false);

}
#endregion

/// <summary>
/// 应用程序的主入口点。
/// </summary>
[stathread]
static void main()
{
application.run(new form1());
}

private void nobutton_click(object sender, system.eventargs e)
{
messagebox.show("oh,bye-bye!","i'm sorry",messageboxbuttons.ok,messageboxicon.warning);
this.close();
}

private void yesbutton_click(object sender, system.eventargs e)
{
messagebox.show("thank you, i'm very happy!","happy",messageboxbuttons.ok,messageboxicon.information);
}
private void yesbutton_mousemove(object sender, system.windows.forms.mouseeventargs e)
{
random rand = new random(unchecked((int)datetime.now.ticks));
int x=rand.next(0,this.size.width-100);
int y=rand.next(0,this.size.height-50);
point point=new point(x,y);
yesbutton.location=point;
}

}
}




发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表