Gambas文档
编译和安装
错误消息
代码片段
待办事项
废弃的组件
教程
开发环境文档
开发者文档
名词解释
如何操作
说明
维基手册
维基搜索
维基许可协议
文档
应用程序仓库
语言概览
语言索引
主题
组件
gb
gb.args
gb.cairo
gb.chart
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.data
gb.db
gb.db.form
gb.db.mysql
gb.db.odbc
gb.db.postgresql
gb.db.sqlite2
gb.db.sqlite3
gb.dbus
gb.dbus.trayicon
gb.debug
gb.desktop
gb.desktop.x11
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.htmlview
gb.form.mdi
gb.form.print
gb.form.terminal
gb.gmp
gb.gsl
gb.gtk
gb.gtk3
gb.gtk3.opengl
gb.gtk3.webview
gb.gui
gb.gui.qt
gb.gui.qt.ext
gb.gui.trayicon
gb.gui.webview
gb.hash
gb.highlight
gb.image
gb.image.effect
gb.image.io
gb.inotify
gb.logging
gb.map
gb.media
gb.media.form
gb.mime
gb.mongodb
gb.mysql
gb.ncurses
gb.net
gb.net.curl
gb.net.pop3
gb.net.smtp
gb.opengl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.openssl
gb.option
gb.pcre
gb.pdf
gb.poppler
gb.qt4
.combobox.item
.container.children
.Menu.Children
.TabStripContainer
.TabStripContainer.Children
.TextArea.Selection
.TextBox.Selection
.Window.Controls
.Window.Menus
_ColumnView_Columns
_ListBox_Item
_TreeView
_TreeView_Item
Action
Align
Animation
Application
Arrange
Border
Button
CheckBox
Clipboard
Color
ColumnView
ComboBox
Container
ContainerChildren
Control
Cursor
Desktop
Dialog
Direction
Drag
Draw
DrawingArea
embedder
Fill
Font
Fonts
Form
Frame
GridView
HBox
HPanel
HSplit
IconView
Image
Key
Label
Line
ListBox
ListView
Menu
Message
_call
Delete
Error
Info
Question
Warning
Mouse
MovieBox
Paint
PaintBrush
PaintExtents
PaintMatrix
Panel
Picture
PictureBox
Point
Pointer
PointF
Printer
ProgressBar
RadioButton
Rect
RectF
Screen
Screens
Scroll
ScrollArea
ScrollBar
ScrollView
Select
Separator
Slider
SpinBox
Splitter
Spring
Style
SvgImage
TabStrip
TextArea
TextBox
TextLabel
ToggleButton
ToolButton
trayicon
trayicons
TreeView
UserContainer
UserControl
VBox
VPanel
VSplit
Watcher
Window
Windows
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt4.webview
gb.qt5
gb.qt5.ext
gb.qt5.opengl
gb.qt5.webview
gb.qt6
gb.qt6.ext
gb.qt6.opengl
gb.qt6.webview
gb.report
gb.report2
gb.sdl
gb.sdl2
gb.sdl2.audio
gb.settings
gb.signal
gb.term
gb.test
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.web.form
gb.web.gui
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
最近的修改

Message (gb.qt4)

该类用于显示消息框。

该类是静态类。

该类可以作为静态函数使用。

静态属性
ColoredButtons   Return or set if colored buttons are used.
DefaultButton   Return or set if the first button of the message box is the default one.
Style   Return or set the message box style.
Title  

静态方法
Delete  
Error  
Info  
Question  
Warning  

消息框有以下几种:: 所有消息功能都会显示不同的图像以突出显示消息类型。上图显示了 Message.Warning() 及其警告图像。使用 Message() 与使用 Message.Info() 相同。

所有的消息函数除了 Message()Message.Info() 可以有多达3个按钮。

最后一个按钮总是“取消”按钮并且默认是。

这与使用 ESCAPE 键关闭消息框时触发的按钮相同。

换句话说,默认操作应该始终不执行任何操作。

消息框是模态的,即:程序暂停直到单击一个按钮。

当消息框关闭时,返回所单击按钮的索引:第一个按钮为 1 ,第二个按钮为 2 ,第三个按钮为 3

消息文本被解释为富文本 富文本

您需要记住的事项包括:

  • 您可以通过常用标签向文本添加强调/标记 :

    Message("(p And Not p) is <b>false</b>")
    

  • 换行符可以是标准换行符 "\n" 或类似 HTML:

    Message("Line<br>break")
    Message("Line\nbreak")
    Message("Line" & gb.Lf & "break")
    

  • HTML 中具有特殊含义的字符需要用引号引起来。以下行:

    Message("(2 < 3) is true")
    

    会导致 "< 3..." 部分内容被视为无效 HTML 被吞掉 (seen with gb.gtk and gb.gtk3), 但

    Message("(2 &lt; 3) is true")
    

    将在任何地方工作。

  • 如果您想显示纯文本而不使用 HTML 标记,您可以使用 Html$ 函数将消息转换为 HTML 可查看格式。

    例如:

    Message(Html$("(2 < 3) <this line shows as you see it> \nand <b>this line is not bold but displays the markup</b>"))
    

Examples

PRINT Message("Program v0.3\\nVersion of 2006-03-28")
PRINT Message.Info("Program v0.3\\nVersion of 2006-03-28", "Fine")
PRINT Message.Warning("改变将丢失", "保存", "忽略", "取消")