亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bioptionpane.html

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? HTML
?? 第 1 頁 / 共 3 頁
字號:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><!--
Generated using api.website.xsl version 2003-07-17
-->
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>BiOptionPane</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link type="text/css" rel="stylesheet" href="api.css"><script type="text/javascript">

				function showDerivedClasses() {
					var ul = document.getElementById("api-derived-classes");
					var lis = ul.childNodes;
					var l = lis.length;
					for (var i = 1; i < l; i++)
						lis[i].style.display = "";
					lis[0].style.display = "none";
				}

			</script></head>
<body>
<h1 id="BiOptionPane">BiOptionPane</h1>
<p>
		This class is used to layout default dialog controls. Normally this class
		is not used directly but one of the static methods are used to create
		new dialogs.
	</p>
<p>This class extends
		<code><a href="BiComponent.html">BiComponent</a></code>
		and therefore all methods and fields available for
		<code><a href="BiComponent.html">BiComponent</a></code>
		are also available for <code>BiOptionPane</code>.</p>
<ul class="partial-class-tree">
<li><code><a href="BiObject.html">BiObject</a></code><ul>
<li><code><a href="BiEventTarget.html">BiEventTarget</a></code><ul><li><code><a href="BiComponent.html">BiComponent</a></code><ul><li><code>BiOptionPane</code><ul id="api-derived-classes"></ul></li></ul></li></ul></li></ul>
</li>
</ul>
<h2>Constructor</h2>
<p><code>

	new BiOptionPane(<span class="methodArgument">oMessage</span> [, <span class="methodArgument">sMessageType</span> [, <span class="methodArgument">sOptionType</span> [, <span class="methodArgument">oImage</span> [, <span class="methodArgument">oOptions</span> [, <span class="methodArgument">oInitialValue</span>]]]]])</code></p>
<h3>Parameters</h3>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="optional-header">Optional</td>
<td>Default</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><code>oMessage</code></td>
<td><code class="type">Object</code></td>
<td class="optional-column"></td>
<td></td>
<td>
				The text or <code><a href="BiComponent.html">BiComponent</a></code> to show
				as a message inside the dialog
			</td>
</tr>
<tr>
<td><code>sMessageType</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td><code>plain</code></td>
<td>
				The type of the message that is shown. This sets the image on
				the option pane if no other image is provided. Valid values are:<br>
				<br>
				plain - No image<br>
				error - Shows a stop (x) image<br>
				information - Shows an image with an 'i' on<br>
				warning - Shows an image with an exclamation mark on<br>
				question - Show a question mark image
			</td>
</tr>
<tr>
<td><code>sOptionType</code></td>
<td><code class="type">String</code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td><code>default</code></td>
<td>
				The option type describes what buttons to show on the optinon pane.
				This is ignored if the <code><a href="#options">options</a></code> are set. Valid values are:<br>
				<br>
				default - Usually shows an "OK" button<br>
				yesno - Shows a "Yes" and a "No" button<br>
				yesnocancel - Shows three buttons with the text "Yes", "No" and "Cancel"<br>
				okcancel - Shows an "OK" and a "Cancel" button
			</td>
</tr>
<tr>
<td><code>oImage</code></td>
<td><code class="type"><code><a href="BiImage.html">BiImage</a></code></code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td></td>
<td>
				The image to show on the option pane. If left out then the image
				defined by the <code><a href="#messageType">messageType</a></code> is used.
			</td>
</tr>
<tr>
<td><code>oOptions</code></td>
<td><code class="type">Object[]</code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td></td>
<td>
				This describes what options/buttons to show on the option pane.
				This is an array of objects and if the object is a
				<code><a href="BiComponent.html">BiComponent</a></code> then it is added as
				it is. If not, a new button is created where the text is taken
				by using the <code>toString</code> method on the object.
			</td>
</tr>
<tr>
<td><code>oInitialValue</code></td>
<td><code class="type">Object</code></td>
<td class="optional-column"><img src="check.png" alt="checked"></td>
<td></td>
<td>
				This is used to define which of the options that should be treated
				as the default <code><a href="#acceptButton">acceptButton</a></code>
			</td>
</tr>
</tbody>
</table>
<h2>Properties</h2>
<table>
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td class="get-header">get</td>
<td class="set-header">set</td>
<td>Descripton</td>
</tr>
</thead>
<tbody>
<tr>
<td><a name="acceptButton"></a><code>acceptButton</code></td>
<td><code class="type"><code><a href="BiEvenTarget.html">BiEventTarget</a></code></code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"><img src="check.png" alt="checked"></td>
<td>
				The button that acts as the default accept button. If this is set
				then the <code><a href="BiButton.html#action">action</a></code>
				event is dispatched from the accept button when the enter key
				is pressed. This does not have to
				be a <code><a href="BiButton.html">BiButton</a></code>, any
				<code><a href="BiEventTarget.html">BiEventTarget</a></code> will work.
			</td>
</tr>
<tr>
<td><a name="cancelButton"></a><code>cancelButton</code></td>
<td><code class="type"><code><a href="BiEvenTarget.html">BiEventTarget</a></code></code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"><img src="check.png" alt="checked"></td>
<td>
				The button that acts as the default cancel button. If this is set
				then the <code><a href="BiButton.html#action">action</a></code>
				event is dispatched from the cancel button. This does not have to
				be a <code><a href="BiButton.html">BiButton</a></code>, any
				<code><a href="BiEventTarget.html">BiEventTarget</a></code> will work.
			</td>
</tr>
<tr>
<td><a name="dialog"></a><code>dialog</code></td>
<td><code class="type"><code><a href="BiDialog.html">BiDialog</a></code></code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				If a <code><a href="BiDialog.html">dialog</a></code> has been created from
				the option pane then this points to that <code><a href="BiDialog.html">dialog</a></code>.
			</td>
</tr>
<tr>
<td><a name="image"></a><code>image</code></td>
<td><code class="type"><code><a href="BiImage.html">BiImage</a></code></code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				The image that is shown on the option pane.
			</td>
</tr>
<tr>
<td><a name="initialValue"></a><code>initialValue</code></td>
<td><code class="type">Object</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"><img src="check.png" alt="checked"></td>
<td>
				This is used to define which of the <code><a href="#options">options</a></code> that
				should be treated as the default <code><a href="#acceptButton">acceptButton</a></code>.
			</td>
</tr>
<tr>
<td><a name="inputComponent"></a><code>inputComponent</code></td>
<td><code class="type"><code><a href="BiComponent.html">BiComponent</a></code></code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"><img src="check.png" alt="checked"></td>
<td>
				This allows an input component to be shown below the message
				component. This is created when creating <code><a href="#createInputDialog">input dialogs</a></code>.
			</td>
</tr>
<tr>
<td><a name="message"></a><code>message</code></td>
<td><code class="type">Object</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				The object used to show the message on the dialog. If the message
				is a <code><a href="BiComponent.html">BiComponent</a></code> then it is shown
				as it is, otherwise a <code><a href="BiLabel.html">BiLabel</a></code> is
				created using the <code><a href="#message">message</a></code> <code>toString</code> as
				the text.
			</td>
</tr>
<tr>
<td><a name="messageType"></a><code>messageType</code></td>
<td><code class="type">String</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				The type of the message that is shown. This sets the image on
				the option pane if no other image is provided. Valif values are:<br>
				<br>
				plain - No image<br>
				error - Shows a stop (x) image<br>
				information - Shows an image with an 'i' on<br>
				warning - Shows an image with an exclamation mark on<br>
				question - Show a question mark image
			</td>
</tr>
<tr>
<td><a name="options"></a><code>options</code></td>
<td><code class="type">Object[]</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				This describes what option buttons to show on the option pane.
				This is an array of objects and if the object is a
				<code><a href="BiComponent.html">BiComponent</a></code> then it is added as
				it is. If not, a new <code><a href="BiButon.html">BiButon</a></code> is
				created where the text is taken by using the <code>toString</code>
				method on the object.
			</td>
</tr>
<tr>
<td><a name="optionType"></a><code>optionType</code></td>
<td><code class="type">String</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"></td>
<td>
				The option type describes what buttons to show on the optinon pane.
				This is ignored if the <code><a href="#options">options</a></code> are set. Valif values are:<br>
				<br>
				default - Usually shows an "OK" button<br>
				yesno - Shows a "Yes" and a "No" button<br>
				yesnocancel - Shows three buttons with the text "Yes", "No" and "Cancel"<br>
				okcancel - Shows an "OK" and a "Cancel" button
			</td>
</tr>
<tr>
<td><a name="value"></a><code>value</code></td>
<td><code class="type">Object</code></td>
<td class="get-column"><img src="check.png" alt="checked"></td>
<td class="set-column"><img src="check.png" alt="checked"></td>
<td>
				Sets the value of the option pane. This is used as the
				<code><a href="BiDialog.html#dialogResult">dialogResult</a></code>
				when the option pane is used with a <code><a href="BiDialog.html">dialog</a></code>.
			</td>
</tr>
</tbody>
</table>
<h2>Methods</h2>
<table>
<thead>
<tr>
<td>Name</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td><code><a href="#createDialog">createDialog</a></code></td>
<td>
				This creates a <code><a href="BiDialog.html">dialog</a></code> where the
				option pane is used as the <code><a href="BiWindow.html#contentPane">contentPane</a></code>.
			</td>
</tr>
</tbody>
</table>
<h2>Events</h2>
<p>None.</p>
<h2>Static Methods</h2>
<table>
<thead>
<tr>
<td>Name</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td><code><a href="#createConfirmDialog">createConfirmDialog</a></code></td>
<td>
				Creates a new <code><a href="BiDialog.html">BiDialog</a></code> with a
				option pane as the <code><a href="BiWindow.html#contentPane">contentPane</a></code>
				of the dialog window.<br>
				<br>
				This dialog is used to ask the user to confirm something. The
				buttons shown are set by the <code><a href="#optionType">optionType</a></code>.<br>
				<br>
				The <code><a href="BiDialog.html#dialogResult">returnValue</a></code>
				for the dialog reflects the button clicked. The values are:<br>
				<br>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品亚洲专区| 激情小说欧美图片| 本田岬高潮一区二区三区| 欧美一级高清大全免费观看| 亚洲国产一区二区a毛片| aaa欧美大片| 中文字幕+乱码+中文字幕一区| 麻豆一区二区在线| 欧美卡1卡2卡| 亚洲国产成人高清精品| 91黄色在线观看| 亚洲视频在线一区| 不卡一区二区三区四区| 国产欧美日韩亚州综合| 国产一区二区成人久久免费影院 | 免费观看在线综合色| 欧美性淫爽ww久久久久无| 自拍偷自拍亚洲精品播放| 成人av影院在线| 国产精品三级电影| 丰满白嫩尤物一区二区| 国产欧美日韩另类一区| 国产成人精品影视| 国产亚洲欧美色| 国产成人精品网址| 日本一区二区三区免费乱视频| 国产剧情在线观看一区二区| 久久综合久久综合久久综合| 国产一区欧美一区| 国产日本亚洲高清| 国产成人av网站| 国产精品久久久久久久久久免费看 | 日韩一区二区三区在线视频| 麻豆91精品视频| 欧美精品一区视频| 国产精品一区在线观看你懂的| 亚洲精品一区二区在线观看| 国产精品亚洲午夜一区二区三区| 国产欧美一区二区精品性| 国产iv一区二区三区| 国产精品超碰97尤物18| 91美女片黄在线| 性做久久久久久| 日韩午夜精品视频| 国产在线播放一区三区四| 国产嫩草影院久久久久| 99久久久久免费精品国产 | 亚洲国产精品激情在线观看 | 日本 国产 欧美色综合| 精品国产一区二区三区忘忧草 | 亚洲不卡一区二区三区| 日韩欧美中文一区| 国产高清亚洲一区| 综合分类小说区另类春色亚洲小说欧美| 91社区在线播放| 天天综合色天天综合色h| 精品日韩在线观看| 国产·精品毛片| 亚洲人成在线播放网站岛国 | 丁香亚洲综合激情啪啪综合| 亚洲免费视频中文字幕| 欧美老肥妇做.爰bbww视频| 韩国av一区二区三区四区 | 日韩欧美另类在线| 成人白浆超碰人人人人| 亚洲综合色成人| 日韩免费观看2025年上映的电影 | 日韩成人一级大片| 国产网站一区二区三区| 色综合天天综合在线视频| 日韩国产欧美三级| 国产欧美日本一区视频| 精品视频在线免费看| 激情成人午夜视频| 亚洲啪啪综合av一区二区三区| 欧美区一区二区三区| 国产成人免费在线观看| 亚洲五月六月丁香激情| 久久久欧美精品sm网站| 在线观看日韩电影| 激情亚洲综合在线| 亚洲影院在线观看| 久久久久久久久久久黄色| 日本道精品一区二区三区| 黑人巨大精品欧美黑白配亚洲| 亚洲人成精品久久久久| 2023国产精品| 精品视频在线免费| 成人a级免费电影| 日本美女视频一区二区| 亚洲日本va在线观看| 亚洲精品一区二区三区99| 欧美亚洲国产一区在线观看网站| 国产精品77777| 日韩专区欧美专区| 综合网在线视频| 26uuu国产日韩综合| 欧美日韩国产一区二区三区地区| 国产成人福利片| 亚洲国产精品一区二区久久| 国产精品情趣视频| 欧美大胆一级视频| 欧美性videosxxxxx| 成人性生交大片免费| 青椒成人免费视频| 亚洲综合激情网| 中文字幕av一区二区三区高| 欧美成人女星排行榜| 欧美亚洲国产一卡| 99视频精品全部免费在线| 激情六月婷婷久久| 免费在线观看视频一区| 亚洲第一主播视频| 亚洲欧美在线视频| 国产亚洲精久久久久久| 日韩一级欧美一级| 欧美日韩午夜在线视频| 91丝袜美腿高跟国产极品老师| 国产伦精一区二区三区| 日本中文字幕一区二区视频| 亚洲综合在线观看视频| 中文字幕亚洲一区二区va在线| 久久综合九色综合97婷婷女人 | 色伊人久久综合中文字幕| 国产成人免费网站| 精品亚洲欧美一区| 欧美aaaaaa午夜精品| 日韩中文字幕1| 亚洲成人av中文| 亚洲一区成人在线| 一级精品视频在线观看宜春院| 国产精品麻豆99久久久久久| 国产欧美一区视频| 国产欧美综合在线| 国产偷国产偷亚洲高清人白洁 | 欧美精品乱码久久久久久按摩| 在线看一区二区| 国产精品中文欧美| 国产精品一区二区在线播放 | 亚洲午夜视频在线观看| 亚洲精品老司机| 亚洲欧美偷拍另类a∨色屁股| 国产精品乱码人人做人人爱| 国产欧美精品一区二区三区四区 | 日韩欧美精品在线| 日韩一级在线观看| 欧美成人女星排行榜| 久久综合色鬼综合色| www国产精品av| 久久久国产精华| 国产精品五月天| 成人欧美一区二区三区白人 | 久久理论电影网| 中文字幕不卡三区| 亚洲人亚洲人成电影网站色| 一区二区三区91| 天天操天天色综合| 美女网站在线免费欧美精品| 麻豆精品一区二区综合av| 激情文学综合网| 粉嫩aⅴ一区二区三区四区 | 精东粉嫩av免费一区二区三区| 久久成人综合网| 国产一区二区三区久久久 | 国产综合久久久久影院| 国产成人8x视频一区二区| 成人黄色片在线观看| 91久久国产综合久久| 在线成人免费视频| 欧美变态tickling挠脚心| 久久女同互慰一区二区三区| 国产免费成人在线视频| 亚洲精品高清在线| 午夜a成v人精品| 国内精品国产三级国产a久久| 成人午夜私人影院| 91国产成人在线| 91精品国产综合久久蜜臀| 精品sm捆绑视频| 国产精品久久久久影院色老大 | 精品欧美久久久| 中文天堂在线一区| 亚洲最大的成人av| 精品中文字幕一区二区| 成人免费看的视频| 欧美亚洲国产一区二区三区| 精品蜜桃在线看| 最新日韩av在线| 视频一区国产视频| 国产精品一区免费在线观看| 91在线你懂得| 91精品国产91久久久久久一区二区 | 成人免费电影视频| 欧美日韩一卡二卡| 久久人人97超碰com| 亚洲综合在线视频| 国内成人自拍视频| 色婷婷综合久色| 精品三级av在线| 一区二区三区免费|