码迷,mamicode.com
首页 >  
搜索关键字:Dialog    ( 2555个结果
模态对话框与非模态窗口
模态对话框就是在没有关闭它之前,不能再与同一个应用程序的其他窗口进行交互,比如新建项目时弹出的对话框。 #include "dialog.h" #include "ui_dialog.h" Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(n ...
分类:其他好文   时间:2020-03-03 10:55:18    阅读次数:77
mfc中对话框的使用总结
上图中的对话框,它上面的元素会在ThreadTestQF.rc(下图)中显示出来。其中CAPTION是窗口左上方的标题。 而IDD = IDD_THREADTESTQF_DIALOG(根据赋值表达式的特性,可知enum的元素即是IDD_THREADTESTQF_DIALOG的值)表示对话框的数据,作 ...
分类:编程语言   时间:2020-03-03 01:11:44    阅读次数:85
vue 父子组件间通讯问题处理
props 方法 父组件传参 <import-package-dialog v-if="dialogs.importPackage" dialoagName="importPackage" @closeDialog="onCloseDialog" > 子组件接收 props: { dialoagNa ...
分类:其他好文   时间:2020-03-02 14:26:24    阅读次数:58
js左右选项移动
<!--网页代码--><div class="modal" id="modal-primary7"> <div class="modal-dialog"> <div class="modal-content"> <input type="hidden" id="modal7_id"> <div cl ...
分类:移动开发   时间:2020-02-28 14:21:22    阅读次数:96
Dialog
Dialog API文档:https://jqueryui.com/dialog/ ...
分类:其他好文   时间:2020-02-25 12:54:09    阅读次数:60
C#选择文件(OpenFileDialog)、选择文件夹(FolderBrowserDialog)
1 选择文件(OpenFileDialog) OpenFileDialog dialog = new OpenFileDialog(); //dialog.Multiselect = true;//该值确定是否可以选择多个文件 // dialog.Title = "请选择文件"; //dialog. ...
分类:Windows程序   时间:2020-02-24 20:11:47    阅读次数:86
Citrix SSL Error 61 – “GlobalSign Root CA”
When using VDI from NetScaler server html, after open a ica file(Citrix ICA Setting file for icaclient) by Citrix Workspace, an error dialog popup: Yo ...
分类:其他好文   时间:2020-02-22 19:44:53    阅读次数:157
Bootstrap风格的JS消息提醒插件(jquery-confirm)
很好用,Demo里的单词都简单就不翻译了 jquery confirm | with Bootstrap style jquery confirm | with Bootstrap style A multipurpose plugin for alert, confirm & dialog, wi ...
分类:Web程序   时间:2020-02-16 18:00:07    阅读次数:127
VFP控制Excel操作集
◆访问EXCEL:ExcelSheet = GetObject('','Excel.Sheet')返回结果为类,则成功。例:ExcelSheet = GetObject('','Excel.Sheet')If Type("ExcelSheet")#'O' Then=MessageBox( "访问Ex ...
分类:其他好文   时间:2020-02-11 00:51:25    阅读次数:83
【WPF学习】第二十六章 Application类——应用程序的生命周期
原文:【WPF学习】第二十六章 Application类——应用程序的生命周期 在WPF中,应用程序会经历简单的生命周期。在应用程序启动后,将立即创建应用程序对象,在应用程序运行时触发各种应用程序事件,你可以选择监视其中的某些事件。最后,当释放应用程序对象时,应用程序将结束。 一、创建Applica... ...
分类:移动开发   时间:2020-02-09 09:58:14    阅读次数:89
2555条   上一页 1 ... 11 12 13 14 15 ... 256 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!