GUIKit`
GUIKit`
"ToolBar"
GUIKitで提供されていた機能は,組込みのWolfram言語にネイティブのインターフェース構造およびコントロール関数で利用できるようになった.
Widget["ToolBar"]
ツールバーを表す.
例題
例 (1)
Needs["GUIKit`"]ref = GUIRun[
Widget["Frame", {
Widget["ToolBar", {
Widget["Button", {
"icon" -> Widget["Icon", {"path" -> "Wolfram/Example/Stop16.gif"}]
}],
Widget["Button", {
"icon" -> Widget["Icon", {"path" -> "Wolfram/Example/Play16.gif"}]
}],
Widget["MenuSeparator"],
Widget["Button", {
"icon" -> Widget["Icon", {"path" -> "Wolfram/Example/Delete16.gif"}]
}],
Widget["Label", {"text" -> "Search: "}],
Widget["TextField"],
"floatable" -> False,
"rollover" -> True}, Name -> "toolBar"],
Widget["TextArea", {"columns" -> 30, "rows" -> 5}]
}]
];GUIScreenShot[ref]