This blog will show how to display a menu we designed in a dialog. 1.Insert a new dialog& a new menu in resourse view. dialog: menu: 2.Set their IDs t ...
分类:
编程语言 时间:
2017-10-28 12:37:54
阅读次数:
143
HP LoadRunner 12.02 Tutorial T7177-88037教程独家中文版 Tylan独家呕血翻译 转载请注明出自“天外归云”的博客园 Welcome to the LoadRunner Tutorial 回到顶部 LoadRunner所包含的组件 如下所示: Vugen:Vir ...
分类:
其他好文 时间:
2017-10-27 23:54:04
阅读次数:
360
Android 开发 对话框Dialog dismiss和hide方法的区别 dismiss和hide方法都可以隐藏对话框,在需要的时候也可以用show方法调用显示。但是,这两者是有区别的。 dismiss方法会释放对话框所占的资源,而hide方法不会。activity退出前必须调用dismiss方 ...
分类:
移动开发 时间:
2017-10-24 18:24:29
阅读次数:
209
今天在做angular的项目的时候,因为需要用到ui-select2所以引入了bootstrap.js,然后bootstrap.js需要jquery1.9版本以上,于是索性换了个2版本的,结果之前的dialog失效不说,还出现Cannot read property 'msie' of undefi ...
分类:
Web程序 时间:
2017-10-23 20:01:46
阅读次数:
328
The CFindReplaceDialog class allows you to implement standard string Find/Replace dialog boxes in your application. Unlike the other Windows common di ...
分类:
其他好文 时间:
2017-10-21 22:30:03
阅读次数:
387
//Dialog.h
private:
QTimer*timer;
//Dialog.cpp
//构造函数里
timer=newQTimer(this);
connect(timer,SIGNAL(timeout()),this,SLOT(update()));
updatetime();
//构造函数外
voidDialog::updatetime()
{
if(speed==1)
timer->stop();
else
timer->start(300-speed..
分类:
编程语言 时间:
2017-10-19 12:53:05
阅读次数:
204
一: 效果图 二:继承Dialog 1.居中弹出 package com.xiaoguaishou.customdialog; import android.app.Activity; import android.app.Dialog; import android.content.Context ...
分类:
其他好文 时间:
2017-10-18 16:44:05
阅读次数:
210
网上也有同学遇到这个问题,http://www.openedv.com/thread-113049-1-3.html 根据他的经验我也重新安装了Jlink驱动; 顺便注意Dialog DLL:TARMSTM.DLL Parameter:-pSTM32F103VE 问题解决,不确定是哪一步起作用。 L ...
分类:
其他好文 时间:
2017-10-18 14:55:55
阅读次数:
2735
1、用到的JFrame(框架)类对象(这里设JFrame类对象是frame)的方法有: frame.add(); 添加组件到frame框架中 frame.setVisible(); 设置框架是否可见 frame.setLayout(); 设置框架布局类型,默认是流布局类型 frame.pack(); ...
分类:
编程语言 时间:
2017-10-18 10:06:00
阅读次数:
225
本文转载郭霖博客:http://blog.csdn.net/guolin_blog/article/details/47028975 跟开发无关,但是看了之后感觉自己又升级了,哈哈,收藏下 Context相信所有的Android开发人员基本上每天都在接触,因为它太常见了。但是这并不代表Context ...
分类:
移动开发 时间:
2017-10-16 13:55:42
阅读次数:
233