Spiga

随笔档案 - 2005年8月

发一个带三态复选框的TreeView[源自sourceforge.net]

2005-08-25 12:42 by 江大鱼, 1520 visits, 网摘, 收藏, 编辑

C#2.0初体验之WinForm篇

2005-08-25 11:44 by 江大鱼, 567 visits, 网摘, 收藏, 编辑
摘要:今天试探性的打开了66.178.223.73的VS2005,添加了个Form和几个控件,里面的代码让我有点郁闷

Form1.cs里面基本没有什么代码

Using directives#region Using directives

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

#endregion

namespace WindowsApplication3
{
partial class Form1 : Form
{
public Form1()
{
InitializeComponent(); < 阅读全文