摘要: using System;using System.Collections.Generic;using System.Windows.Forms;using System.Text;namespace Common{ /// <summary> /// 窗体的单例模式 /// </summary> /// <typeparam name="T"></typeparam> public class FormSingle<T> where T : Form, new() { private static T form; 阅读全文
posted @ 2011-05-09 12:22 HTL 阅读(1120) 评论(0) 推荐(0) 编辑
htl