ModalResult是指一?模式窗体(form.showmodal)的返回值

mrNone   0                  None.   Used   as   a   default   value   before   the   user   exits.
 mrOk   1                      The   user   exited   with   OK   button.
 mrCancel   2               The   user   exited   with   the   CANCEL   button.  
 mrYes   3                     The   user   exited   with   the   YES   button.
 mrNo   4                       The   user   exited   with   the   NO   button.
 mrAbort   5                   The   user   exited   with   the   ABORT   button.
 mrRetry   6                   The   user   exited   with   the   RETRY   button.
 mrIgnore   7                 The   user   exited   with   the   IGNORE   button.
 mrAll   8                         The   user   exited   with   the   ALL   button.
 mrNoToAll   9               The   user   exited   with   the   NO   TO   ALL   button.
 mrYesToAll   10           The   user   exited   with   the   YES   TO   ALL   button.

时间: 2024-10-08 02:22:05

ModalResult是指一?模式窗体(form.showmodal)的返回值的相关文章

打开模态窗体,并获取返回值

1 //编辑 2             function btnEdit(keyid,sysName,mark) { 3                 //  打开模态窗体,并获取返回值 4                 var returnValue = window.showModalDialog('FileChange_SystemEdit.aspx?sysName=' + sysName + '&keyid=' + keyid + '&mark=' + mark, '', '

非阻塞模式下网络读写接口返回值的处理

Cyassl库 https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-17-8-wolfssl-api-connection-session-io.html int CyaSSL_read(CYASSL* ssl, void* data, int sz); Return Values: > 0 - the number of bytes read upon success. 0 - will be returned upon failure.  This

浅谈C#中的模式窗体和非模式窗体

ShowDialog();// 模式窗体 Show(); // 非模式窗体差别:1.返回值不同,DialogResult/void2.模式窗体会使程序中断,直到关闭模式窗口3.打开模式窗体后不能切换到应用程序的其他窗体4.子窗体和模式窗体互斥.

C# 非模式窗体show()和模式窗体showdialog()的区别(转)

对话框不是模式就是无模式的.模式对话框,在可以继续操作应用程序的其他部分之前,必须被关闭(隐藏或卸载).例如,如果一个对话框,在可以切换到其它窗 体或对话框之前要求先单击“确定”或“取消”,则它就是模式的. 一.如何调用 任何窗体(派生于基类Form的类),都可以以两种方式进行显示. //非模式窗体 From qform=new Form(); qform.Show(); //模式窗体 Form qform=new Form(); qform.ShowDialog(); 一.控制权上的区别 Fo

DELPHI XE5 跨平台 Form ShowModal 官方示例

Calling ShowModal as an Anonymous Method on All Platforms procedure THeaderFooterForm.btnPickClick(Sender: TObject); var dlg: TForm1; begin dlg := TForm1.Create(nil); // select current value, if available in the list dlg.ListBox1.ItemIndex := dlg.Lis

模式窗体与非模式窗体

非模式窗体从创建到销毁都需要代码来维护,防止内存未安全释放. 模式窗体就比较省心一些,只需要在代码段的try…finally中创建并维护即可. 下面用例子来说明一下两类窗体如何调用: 主窗体程序: unit Main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,ModalForm,ModalessForm; type TFo

C#中Winform窗体Form的关闭按钮变灰色的方法

本文实例讲述了C#中Winform窗体Form的关闭按钮变灰色的方法,对C#程序设计有一定的借鉴价值,分享给大家供大家参考之用.具体方法如下: 主要功能代码如下: [ DllImport ( "USER32.DLL" ) ] public static extern int GetSystemMenu(int hwnd, int bRevert); [ DllImport ( "USER32.DLL" ) ] public static extern int Rem

asp.net 父窗体获取子窗体的返回值,可用来对父窗体局部更新

今天在项目上遇到了这个问题,其实只是window.returnValue的简单应用,不是asp.net的专属内容.作为积累,记录一个简单的实现模型. 图1  用到的文件 从图1中我们可以看到,只用到了两个页面,其中Default.aspx作为父页面,Default2.aspx作为子页面被弹出.Default.aspx页面上有两个TextBox一个Button,代码如下: 1 <%@ Page Language="C#" AutoEventWireup="true&quo

Request.QueryString/Form 返回值类型 与 CInt()

一直以为 Request.QueryString/Form 找不到指定的变量时会返回空字符串. 其实不然,Request.QueryString/Form 找不到指定的变量时,返回值的类型是 Empty. Empty 是 Variant 的子类型. CInt() 不接受空字符串,但是却可以接受 Empty 类型. 下面是关于 VBScript 数据类型的一些介绍. VBScript 只有一种数据类型,称为 Variant. Variant 是一种特殊的数据类型,根据使用的方式,它可以包含不同类别