首页 > 代码库 > 简单的WINFORM窗口,体验WINFORM带来的快感

简单的WINFORM窗口,体验WINFORM带来的快感

当习惯成为一种自然,就不再喜欢那种条条框框的规则
using System;
using System.Windows.Forms;

namespace Window{
class Window{
static void Main(){
Form form = new Form();
form.Click += new EventHandler(form_Click);//注冊窗口单击事件
Application.Run(form);
}

static void form_Click(object sender,EventArgs e){
Form form = (Form)sender;
form.Text = "Mouse Position X="+ Cursor.Position.X +",Y=" + Cursor.Position.Y;
}
}
}
实现的是:编译以后运行EXE得到一个可最大化最小化也能够关闭的窗口。而且单击窗口能够在标题上看到当前鼠标点击过的坐标 别说我非常浅显,事实上我也知道。总也奈不住的写下一点一滴。

<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

简单的WINFORM窗口,体验WINFORM带来的快感