slide033.html

来自「《Big C++ 》Third Edition电子书和代码全集-Part1」· HTML 代码 · 共 38 行

HTML
38
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<meta content="blendTrans(Duration=2)" http-equiv="Page-Enter">
	<title>Big C++: Chptr. 27 -- Graphical User Interfaces</title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta name="Copyright" content="2005 John Wiley & Sons">
  <meta name="Author" content="Kurt Schmidt">
</head>


<body>
<div onclick="document.location='slide034.html'">
<h2><font color='#009999'>27.9 Dialogs (cont.)</font></h2>
<ul>
  <li><font size="+1">The parent parameter is a pointer to the parent window, 
    over which the dialog box is placed.</font></li>
  <li><font size="+1">The message parameter is of type <tt>wxString</tt>, a class 
    that is similar to the standard <tt>string</tt> type.</font></li>
  <li><font size="+1">We recommend you use the standard string class for all string 
    computations, then use the <tt>c_str</tt> function to convert to a C string, 
    which is then automatically converted to a <tt>wxString</tt>.
	<blockquote>
      <pre>string message = "Hello, " + name;
dialog = new wxMessageDialog(this, message.c_str());</pre>
    </blockquote></font></li>
  <li><font size="+1">When you are done with a dialog, you should destroy it.</font></li>
</ul>
<hr>
<center><small>
	<a href='slide032.html'>prev</a>
	|<a href='slide001.html'>top</a>
	|<a href='slide034.html'>next</a>
</small></center>
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?