Abort 中止 - returns DialogResult.Abort value, when user clicks an Abort button. 当用户单击“中止”按钮时,返回DialogResult.Abort值。
Cancel 取消 -returns DialogResult.Cancel, when user clicks a Cancel button. 当用户单击Ignore按钮时,返回DialogResult.Ignore。
Ignore 忽略 -returns DialogResult.Ignore, when user clicks an Ignore button. 返回DialogResult.No,当用户单击否按钮。
No -returns DialogResult.No, when user clicks a No button. 不返回任何内容,对话框继续运行。
None 无 -returns nothing and the dialog box continues running. 返回DialogResult.OK,当用户单击确定按钮
OK -returns DialogResult.OK, when user clicks an OK button. 返回DialogResult. OK,当用户点击OK键
Retry 重试 -returns DialogResult.Retry , when user clicks an Retry button. 当用户单击重试按钮时,返回DialogResult.Retry
Yes -returns DialogResult.Yes, when user clicks an Yes button. 返回DialogResult.Yes,当用户单击是按钮
下图显示了通用对话框类继承:
S.N. | 控制& 说明 |
---|---|
1 | It represents a common dialog box that displays available colors along with controls that enable the user to define custom colors. 它表示一个公共对话框,显示可用颜色以及允许用户定义自定义颜色的控件。 |
2 | It prompts the user to choose a font from among those installed on the local computer and lets the user select the font, font size, and color. 它提示用户从安装在本地计算机上的字体中选择字体,并让用户选择字体,字体大小和颜色。 |
3 | It prompts the user to open a file and allows the user to select a file to open. 它提示用户打开文件,并允许用户选择要打开的文件。 |
4 | It prompts the user to select a location for saving a file and allows the user to specify the name of the file to save data. 它提示用户选择保存文件的位置,并允许用户指定保存数据的文件的名称。 |
5 | It lets the user to print documents by selecting a printer and choosing which sections of the document to print from a Windows Forms application. 它允许用户通过选择打印机并从Windows窗体应用程序中选择要打印的文档的哪些部分来打印文档。 |
|