摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _8下拉列表{ public partial class Form1 : Form { public Form1() { InitializeComponent();... 阅读全文
posted @ 2012-02-27 23:24 简单--生活 阅读(205) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;/* 登际界面,登陆错误三次退出程序,假设用户名,密码是admin 888888, 不区分大小写 * (易错点: 局部变量与类变量的使用) * 退出程序this.Close() 或者 Application.Exit(); * * 修改密码,界面上 阅读全文
posted @ 2012-02-27 23:23 简单--生活 阅读(177) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _7练习6{ public partial class Form1 : Form { public Form1() { InitializeComponent(); ... 阅读全文
posted @ 2012-02-27 23:22 简单--生活 阅读(154) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _6练习4{ public partial class Form1 : Form { public Form1() { InitializeComponent(); ... 阅读全文
posted @ 2012-02-27 23:21 简单--生活 阅读(144) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _4练习2{ public partial class Form1 : Form { public Form1() { InitializeComponent(); ... 阅读全文
posted @ 2012-02-27 23:21 简单--生活 阅读(140) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _3练习1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); ... 阅读全文
posted @ 2012-02-27 23:20 简单--生活 阅读(207) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;/* 第一个Windows程序 * WinForm: Windows Form, .Net中用来开发windows窗口程序的技术,无论是之前学的控制台程序,还是后面学的ASP.Net都是调用.Net框架,因此所有知识点都是一样的 * 新建一个WIn 阅读全文
posted @ 2012-02-27 23:19 简单--生活 阅读(211) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace _2计算器练习{ public partial class Form1 : Form { public Form1() { InitializeComponent()... 阅读全文
posted @ 2012-02-27 23:19 简单--生活 阅读(204) 评论(0) 推荐(0) 编辑
摘要: jQuery提供簡單易用的DOM操作能力,讓我們可以專注於Javascript程式的邏輯而不用去理會煩人的DOM操作、瀏覽器相容等問題。我們可以利用next()來取得同級的下一個元素,利用prev()來取得同級的上一個元素,但是jQuery並無直接由函數提供取得同級的第一個元素、同級的最後一個元素、同級的任一元素,因此我們可以利用jQuery強大的Selector(選擇器)達成這樣的需求,並替jQuery擴充功能。擴充jQuery的功能函數,把以下程式碼加入JQuery中view plaincopy to clipboardprint?//取得第一個同級元素$.fn.first=functio 阅读全文
posted @ 2012-02-27 12:00 简单--生活 阅读(1510) 评论(0) 推荐(0) 编辑
简单--生活(CSDN)