c#winform练习

c#winform练习

ID:35938285

大小:779.72 KB

页数:47页

时间:2019-04-26

c#winform练习_第1页
c#winform练习_第2页
c#winform练习_第3页
c#winform练习_第4页
c#winform练习_第5页
资源描述:

《c#winform练习》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、实用文案//1.添加两个按钮一个文本框如下图:当用户点击爱时弹出“我也爱你哟”,点击不爱时弹出“还是被你给点到了”并退出程序usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceLove_and_notLove{pu

2、blicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidLovebtn_Click(objectsender,EventArgse){MessageBox.Show("我也爱你哟!");this.Close();}//触发点击事件privatevoidNotLovebtn_Click(objectsender,EventArgse){MessageBox.Show("还是被你给点到了");//关闭主程序this.Clo

3、se();}//针对鼠标移动至按钮所属区域时触发事件privatevoidNotLovebtn_MouseEnter(objectsender,EventArgse){//声明一个变量用于存放按钮的X轴坐标intx=this.ClientSize.Width-NotLovebtn.Width;//声明一个变量用于存放按钮的Y轴坐标inty=this.ClientSize.Height-NotLovebtn.Height;标准文档实用文案//声明一个随机数实例Randomr=newRandom();//声明按钮的

4、移动范围NotLovebtn.Location=newPoint(r.Next(0,x+1),r.Next(0,y+1));}}}//2.在窗口中放置两个控件如下图:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespa

5、ceLable控件和TextBox控件{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidtxtBox_TextChanged(objectsender,EventArgse){lblTxt.Text=txtBox.Text;//使lable控件的值等于textbox的值}}}//3.做一个跑马灯的练习控件如下图:在窗体中放入label和Timer两个控件并分别设置两个控件的属性Label控件:Text:☆★

6、Timer控件:Enable:trueTick:事件标准文档实用文案usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespace跑马灯{publicpartialclassForm1:Form{publicForm1(){

7、InitializeComponent();}privatevoidtimer1_Tick(objectsender,EventArgse){label1.Text=label1.Text.Substring(1)+label1.Text.Substring(0,1);}}}//4.小闹钟在窗体中放一个label和timer两个控件并修改其属性Timer控件:Interval:1000Enable:TrueLabel控件:Name:labtimeusingSystem;usingSystem.Collectio

8、ns.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;标准文档实用文案usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Media;namespace小闹钟{publicpartialclassFo

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。