dialog

Android 自定义通用Dialog

夙愿已清 提交于 2020-02-15 08:07:04
public MyDialog(Context context, int width, int height, View layout) { super(context, R.style.DialogTheme); setContentView(layout); Window window = getWindow(); WindowManager.LayoutParams params = window.getAttributes(); params.width = width; params.height = height; params.gravity = Gravity.CENTER; //显示的位置 window.setAttributes(params); } 使用: int width = getResources().getDisplayMetrics().widthPixels;//获取popwindow展示的宽 int height = getResources().getDisplayMetrics().heightPixels;//获取popwindow展示的高 MyDialog mMyDialog = new MyDialog(this, width * 3 / 4 , height * 3 / 5, view, R.style.DialogTheme);

Flutter之Dialog加载弹窗提示

寵の児 提交于 2020-02-13 17:51:07
import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; class Dialogs { static CustomDialog normalProgressDialog(String message) { return CustomDialog( child: Container( height: 150, alignment: Alignment.center, child: Row( crossAxisAlignment: CrossAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ SizedBox( width: 20.0, height: 20.0, child: CircularProgressIndicator( strokeWidth: 2.0, ), ), Text(' $message'), ], ), ), ); } static Future<T> showNormalProgressDialog<T>(BuildContext context, String message, AsyncValueGetter<T>

PyQt5教程——对话框(6)

别等时光非礼了梦想. 提交于 2020-02-10 13:24:25
PyQt5中的对话框 对话框窗口或对话框是大多数主流GUI应用不可缺少的部分。对话是两个或更多人之间的会话。在计算机应用中,对话框是一个用来和应用对话的窗口。对话框可以用来输入数据,修改数据,改变应用设置等等。 输入对话框 QInputDialog提供了一个简单便利的对话框用于从用户那儿获得只一个值。输入值可以是字符串,数字,或者一个列表中的列表项。 #!/usr/bin/python3 # -*- coding: utf-8 -*- """ ZetCode PyQt5 tutorial In this example, we receive data from a QInputDialog dialog. author: Jan Bodnar website: zetcode.com last edited: January 2015 """ import sys from PyQt5.QtWidgets import (QWidget, QPushButton, QLineEdit, QInputDialog, QApplication) class Example(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.btn = QPushButton(

sapui5 walkthrough 16-20

若如初见. 提交于 2020-02-09 18:20:32
16 Step 16: Dialogs and Fragments fragments 是一个轻量级的UI组件,可以重用,但没有任何controller。 当你想定义一个跨多个视图的,特定的ui的一部分时,可以选择fragments。 一个fragment里面可以包括一个到多个控件,在运行的时候,视图中的fragments中的控件的内容会像普通视图中的content内容一样,被包含在视图的DOM中。这样我们可以像访问普通视图的控件一样,直接访问fragments中的控件。 当然,也有一些控件不会成为视图的一部分,例如对话框。 添加一个对话框到应用程序中,对话框打开在常规的应用程序内容之上,因此不属于特定的视图,所以必须在controller的某个地方进行实例化。 另外由于需要尽可能灵活的重用构件,并且不能将对话框指定为view,所以我们将创建包含dialog的XML fragment。 修改 HelloPanel.view.xml <mvc:View controllerName="sap.ui.demo.walkthrough.controller.HelloPanel" xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc"> <Panel headerText="{i18n>helloPanelTitle}" class=

vuex入门文档

a 夏天 提交于 2020-02-08 19:55:44
如果你在使用 vue.js , 那么我想你可能会对 vue 组件之间的通信感到崩溃 。 我在使用基于 vue.js 2.0 的UI框架 ElementUI 开发网站的时候 , 就遇到了这种问题 : 一个页面有很多表单 , 我试图将表单写成一个单文件组件 , 但是表单 ( 子组件 ) 里的数据和页面 ( 父组件 ) 按钮交互的时候 , 它们之间的通讯很麻烦 : <!--父组件中引入子组件--> <template> <div> <a href="javascript:;" @click="show = true">点击</a> <t-dialog :show="show" @dialog_event="hide_dialog"></t-dialog> </div> </template> <script> import dialog from './components/dialog.vue' export default { data(){ return { show:false } }, methods:{ //收到子组件的消息 , 改变show的值 hide_dialog(){ this.show = false; } }, components:{ "t-dialog":dialog } } </script> <!--子组件--> <template> <el-dialog

In IE, how can displaying the browser's list of saved usernames/passwords and save username/password dialog be controlled using javascript?

风格不统一 提交于 2020-02-07 05:29:05
问题 In my web-application, there are two pages that deal with the user's account, the user account create/edit page and the login page. These pages do pretty much as expected, except I want to: Prevent the browser's usernames/password list (aka, list) from being displayed on the user account create/edit page, Conditionally display the list on the login page, Conditionally display the browser's save username/password dialog (aka, save-dialog) after submitting the user account create/edit page, and

Dynamically bind error message along with a icon to a single jQuery dialog

£可爱£侵袭症+ 提交于 2020-02-06 08:03:13
问题 I have created a global jQuery dialog to display all error messages in the application. I am able to bind the error message to the dialog, however I am unable to show the icon along with. For sake of simplicity I have provided a sample with a generic google image. Any leads will be appreciated or if there's a better way to do it please do mention. Thanks in advance function showAlertDialog(message) { var $dialog = $('#ErrorMessageDialog') .html(message) .dialog({ modal: true, title: 'Data

Dynamically bind error message along with a icon to a single jQuery dialog

廉价感情. 提交于 2020-02-06 08:03:10
问题 I have created a global jQuery dialog to display all error messages in the application. I am able to bind the error message to the dialog, however I am unable to show the icon along with. For sake of simplicity I have provided a sample with a generic google image. Any leads will be appreciated or if there's a better way to do it please do mention. Thanks in advance function showAlertDialog(message) { var $dialog = $('#ErrorMessageDialog') .html(message) .dialog({ modal: true, title: 'Data

JLabel

蓝咒 提交于 2020-02-04 14:43:30
JLabel的字体样式,大小,颜色设置用到以下两个方法: jlabel.setFont(new java.awt.Font(“Dialog”, 1, 15)); “dialog”代表字体,1代表样式(1是粗体,0是平常的)15是字号 //设置字体 jlabel.setForeground(Color.red); //设置颜色 来源: CSDN 作者: Lance.Rand 链接: https://blog.csdn.net/qq_36109318/article/details/104166788

java之继承

僤鯓⒐⒋嵵緔 提交于 2020-02-03 13:04:16
封装 继承(Inheritance) 继承的作用:提高代码的复用性和可维护性 软件中,1000个对话框,每个对话框单独编写需要100行代码,总共需要10万行代码 考虑每个对话框共同的部分占70行,独有的占30行。70行代码编写一次,重复使用。 总共需要:70+30*1000=3万行 --如何编写代码实现继承? 字体对话框 段落对话框 使用子类通过extends继承父类 父类:超类、基类,superClass 子类:派生类,扩展类 Java中的继承,比C++要简单的多 C++支持多重继承(一个子类同时多个父类),Java不支持 继承的几个性质: (1)父类中的所有非私有成员都可以被子类继承(默认权限的成员,在包外不能被子类使用) (2)一般情况下,将需要被继承的成员定义为protected的 (3)被正常继承的成员,可以在子类中当成自己的成员使用 继承的特殊情况: (1)覆盖(重写override) 子类继承了父类的成员,万一子类中还定义了和父类相同类型和名称的成员,会不会有歧义? 子类中的成员会屏蔽掉父类成员,这叫做覆盖(Override) 注意:覆盖不允许使子类成员的访问权限比父类成员的访问权限严格 覆盖的作用?可保持子类的个性化 (2)父类和子类的关系 子类实例化时,系统会自动提前为该子类实例化父类对象 问题:父类构造函数万一有参数怎么办