摘要: 1、文件对话框(FileDialog) 它又常用到两个: 打开文件对话框(OpenFileDialog) 保存文件对话框(SaveFileDialog) 2、字体对话框(FontDialog) 3、颜色对话框(ColorDialog) 4、打开文件夹对话框 FolderBrowserDialog u 阅读全文
posted @ 2016-12-11 20:25 尘暮 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 制作登录窗体: 制作一个登陆窗体,实现点击按钮关闭此窗体并打开另一个窗体 直接在按钮点击事件中,实例化一个想要打开的窗体 使用show方法打开,并把登陆窗体的visible属性改为false Form1 f1 = new Form1(); f1.Show(); this.Visible = fals 阅读全文
posted @ 2016-12-11 14:43 尘暮 阅读(324) 评论(0) 推荐(0) 编辑