P92认识对话框

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Threading.Tasks;
 9 using System.Windows.Forms;
10
11 namespace P92认识对话框
12 {
13     public partial class Form1 : Form
14     {
15         public Form1()
16         {
17             InitializeComponent();
18         }
19         //选择文件
20         private void button1_Click(object sender, EventArgs e)
21         {
22             //设置对话框标题
23             this.openFileDialog1.Title = "选择数据文件";
24             //按照扩展名过滤文件
25             this.openFileDialog1.Filter = "Excle文件|*.xls;*.xlsx|所有文件|*.*";
26             //是否支持多选
27             this.openFileDialog1.Multiselect = true;
28             if (this.openFileDialog1.ShowDialog()==System.Windows.Forms.DialogResult.OK)
29             {
30                 this.textBox1.Text = this.openFileDialog1.FileName;
31             }
32         }
33         //选择文件夹
34         private void button2_Click(object sender, EventArgs e)
35         {
36             //设置对话框的描述
37             this.folderBrowserDialog1.Description = "请选择一个文件夹";
38             //设置对话框的初始目录
39             this.folderBrowserDialog1.RootFolder = Environment.SpecialFolder.Desktop;
40             //是否选择新建文件夹
41             this.folderBrowserDialog1.ShowNewFolderButton = true;
42             if (folderBrowserDialog1.ShowDialog()==System.Windows.Forms.DialogResult.OK)
43             {
44                 this.textBox2.Text = folderBrowserDialog1.SelectedPath;
45             }
46         }
47         //保存文件
48         private void button3_Click(object sender, EventArgs e)
49         {
50             SaveFileDialog sfd = new SaveFileDialog();
51             sfd.Title = "保存到处文件";
52             sfd.InitialDirectory = @"\d:";
53             sfd.FileName = "哈哈哈.txt";
54             sfd.Filter = "记事本|*.txt|所有问价|*.*";
55             if (sfd.ShowDialog()==System.Windows.Forms.DialogResult.OK)
56             {
57                 this.textBox3.Text = sfd.FileName;
58             }
59         }
60
61         private void button4_Click(object sender, EventArgs e)
62         {
63             ColorDialog cd = new ColorDialog();
64             if (cd.ShowDialog()==System.Windows.Forms.DialogResult.OK)
65             {
66                 this.textBox4.Text = cd.Color.ToString();
67             }
68         }
69
70         private void button5_Click(object sender, EventArgs e)
71         {
72             FontDialog fd = new FontDialog();
73             if (fd.ShowDialog()==System.Windows.Forms.DialogResult.OK)
74             {
75                 this.textBox5.Text = fd.Font.ToString();
76             }
77         }
78     }
79 }
时间: 2024-11-05 04:49:53

P92认识对话框的相关文章

用dialog在前台实现一个简单的UI对话框

<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>对话框部件(Dialog Widget)演示</title> <link rel="stylesheet" href="//apps.bdimg.com/libs/jqueryui/1.10.4/css/jquery-ui.m

bootstrap中的对话框-dialog

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> <meta http-

bootstrap中的对话框-dialog-2

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> <meta http-

C#WebBrowrse拦截下载对话框

为了实现这个功能,可算是折腾不少时间,网上搜素出来的结果基本都是如何屏蔽警告对话框.后来请教一个技术大牛(程序员之窗的主要作者Starts_2000),他用C++实现了,他尝试了下C#也没有解决,就忙其他的去,大牛时间一般都比较宝贵,后来我就将就用那个C++动态库,那个时候我测试环境是 win7 64位 +vs2013,后来系统环境变化成 win10 +vs2015,突然就不好使了,赶紧重新编译C++源码,各种错误,感觉怎么这么不稳定. 怎么办?总不能再让别人帮忙,下次环境变化了继续问别人? 

Webdriver实现下载功能,屏蔽掉windows弹出的对话框,FireFox下设置浏览器的属性,两种实现方式:

一.使用一个全新的FireFox浏览器打开Web应用,浏览器不带任何插件,也未对浏览器做任何默认配置,但需要对浏览器属性进行配置 // 获取浏览器的所有配置文件 ProfilesIni allProfiles = new ProfilesIni(); // "Selenium" 是之前创建的profile,不带任何插件,也未对浏览器做任何默认配置 FirefoxProfile profile = allProfiles.getProfile("selenium");

Android 对话框 Dialog

对话框 Dialog 什么是对话框 对话框是在当前的页面之上弹出的小窗口, 用于显示一些重要的提示信息, 提示用户的输入,确认信息, 或显示某种状态.如 :  显示进度条对话框, 退出提示. 对话框的特点: 1, 当前界面弹出的小窗口. 2, 用户要与它进行交互, 可以接收用户输入的信息, 也可以反馈信息给用户. 常用对话框: 1, 普通对话框 AlertDialog 2, 进度条对话框  ProgressDialog 3, 日期对话框    DatePickerDialog 4, 时间对话框

QT笔记之模态对话框及非模态对话框

模态对话框(Modal Dialog)与非模态对话框(Modeless Dialog)的概念不是Qt所独有的,在各种不同的平台下都存在.又有叫法是称为模式对话框,无模式对话框等.所谓模态对话框就是在其没有被关闭之前,用户不能与同一个应用程序的其他窗口进行交互,直到该对话框关闭.对于非模态对话框,当被打开时,用户既可选择和该对话框进行交互,也可以选择同应用程序的其他窗口交互. 在Qt中,显示一个对话框一般有两种方式,一种是使用exec()方法,它总是以模态来显示对话框:另一种是使用show()方法

Android新手入门2016(13)--阻塞对话框PopupWindow

上两章都说了非阻塞的对话框,今天说一下阻塞的对话框--PopupWindow 那么什么是阻塞什么是非阻塞呢?PopupWindow和AlertDialog有什么不同呢? 先说AlertDialog,弹出来之后,背面会变灰,并没有阻塞后台的进程,如果没特殊控制,点击后面灰暗处,弹框会消失掉的. 至于PopupWindow,则是弹出来,后面没有任何变化,并且阻塞该应用的进程,如果一直没退出,应用汇一直等待,点击后面也是没有反应的. 不知道为什么现在上传不了图,就不上传了,其实跟AlertDialog

第6章(3) AlertDialog(警告对话框)

分类:C#.Android.VS2015: 创建日期:2016-02-08 一.简介 AlertDialog也是Android系统当中常用的对话框之一. 在一个AlertDialog中,可以有一个Button.两个Button.3个Button.另外,还可以自定义对话框的样式,比如带有单选按钮的对话框.带有复选框的对话框等. 1.基本用法 一般通过AlertDialog.Builder.Create()方法来构造该对话框,然后就可以通过dialog调用对应的方法.常用方法如下: SetTitle