リスト4 button.xul

 1 <?xml version="1.0" encoding="EUC-JP"?>
 2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
 3 <window id="language" title="Please choose your language"
 4         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 5   <groupbox flex="1" align="center"
 6     style="margin: 50px; background: white; max-height: 100px; max-width: 300px">
 7     <caption label="Choose your language"/>
 8     <grid style="padding-top: 10px; padding-bottom: 10px">
 9       <rows>
10         <row>
11           <button id="english_button" image="../images/Ice.gif"
12             orient="vertical" label="English" default="true"/>
13           <spacer flex="3"/>
14           <button id="japanese_button" image="../images/Dango.gif"
15             orient="vertical" label="日本語"/>
16         </row>
17       </rows>
18     </grid>
19   </groupbox>
20 </window>