diff options
Diffstat (limited to 'files/ko/preferences_system/examples/index.html')
-rw-r--r-- | files/ko/preferences_system/examples/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/files/ko/preferences_system/examples/index.html b/files/ko/preferences_system/examples/index.html new file mode 100644 index 0000000000..cc536d86f3 --- /dev/null +++ b/files/ko/preferences_system/examples/index.html @@ -0,0 +1,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" } ) }} |