今天的ChromeBeta发布版包含了许多新的开发者特性。这些特性帮助你制作更丰富的、更迅速的和更引人入胜的网页内容以及应用程序,尤其是移动设备上。除非特别指出,否则下面描述的变化对Android,Windows,Mac,Linux,andChromeOS的Chrome均有效。使用Windows的D...
1、模态和非模态的区别:非模态可以同时操作两个窗口,模态的只能在顶层窗口关闭之后才能使用其他窗口 //同时显示出widget和dialog窗口,非模态 QDialog *dialog = new QDialog(this); dialog->show(); //同时显示出widget和dialo.....
分类:
其他好文 时间:
2014-08-03 22:50:46
阅读次数:
259
1、Javapackage com.fish.helloworld;import android.app.Activity;import android.app.AlertDialog;import android.app.Dialog;import android.content.Context;...
分类:
移动开发 时间:
2014-08-03 20:23:05
阅读次数:
237
Android中让Dialog全屏:一、在style中定义样式: 其中transparent_background为颜色值:#50000000,透明度为50二、代码中定义Dialog时添加样式:View myLoginView = LayoutInflater.from(mC...
分类:
移动开发 时间:
2014-08-02 23:16:44
阅读次数:
282
AlertDialod like java awt dialog , when a event actived the activity will display a dialog , it can contain many views not only text or buttons ,here ...
分类:
其他好文 时间:
2014-08-02 15:07:53
阅读次数:
208
相关主题 1. 用纯色 设置对话对话框的背景色 2. 用位图 设置对话对话框的背景色 3. 使用Picture Ctrl来设置背景图片 对话框背景色 ...
分类:
编程语言 时间:
2014-08-01 22:40:22
阅读次数:
337
第一部分 个性化控件(View)主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activit...
分类:
移动开发 时间:
2014-08-01 19:01:12
阅读次数:
386
dialog.c#include#include#include#include#include#include"dialog.h"Dialog::Dialog(QWidget*parent):QDialog(parent){tcpSocket=newQTcpSocket(this);timer1=...
分类:
其他好文 时间:
2014-07-31 23:33:30
阅读次数:
338
新建一个appdialog.js文件,代码如下
var contexts = {};
var dialogCount = 0;
var app = {
getDialog: function (obj) {
if (obj) {
return obj.__dialog__;
}
return undefined...
dialog.setCanceledOnTouchOutside(false);//设置点击屏幕Dialog不消失
分类:
其他好文 时间:
2014-07-30 17:57:05
阅读次数:
335