blob: cc536d86f354c0a541002005cbb4e7e8cfdac6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
title: Examples
slug: Preferences_System/Examples
tags:
- NeedsContent
- Preferences system
---
<p>{{ Preferences_System_TOC() }}
</p>
<h3 id="Preferences_.EB.8C.80.ED.99.94.EC.83.81.EC.9E.90_.EC.98.88"> Preferences 대화상자 예 </h3>
<pre class="eval"><?xml version="1.0"?>
<?xml-stylesheet href="<span>chrome://global/skin/</span>" type="text/css"?>
<prefwindow id="stockwatcher2-prefs"
title="StockWatcher 2 Options"
xmlns="<span>http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</span>">
<prefpane id="sw2-stock-pane" label="Stock Settings">
<preferences>
<preference id="pref_symbol" name="stockwatcher2.symbol" type="string"/>
</preferences>
<hbox align="center">
<label control="symbol" value="Stock to watch: "/>
<textbox preference="pref_symbol" id="symbol" maxlength="4"/>
</hbox>
</prefpane>
</prefwindow>
</pre>
<p>같이 보기: <a href="ko/Adding_preferences_to_an_extension"> 확장기능에 preferences 추가하기</a>
</p>{{ languages( { "en": "en/Preferences_System/Examples", "ja": "ja/Preferences_System/Examples" } ) }}
|