Created
April 24, 2012 20:25
-
-
Save bokutin/2483421 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
<resource xmlns="http://www.wxwindows.org/wxxrc" version="2.3.0.1"> | |
<object class="wxFrame" name="MainFrame"> | |
<style>wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL</style> | |
<size>500,300</size> | |
<title>じゃんけん</title> | |
<centered>1</centered> | |
<aui_managed>0</aui_managed> | |
<object class="wxPanel" name="m_panel1"> | |
<style>wxTAB_TRAVERSAL</style> | |
<object class="wxBoxSizer"> | |
<orient>wxHORIZONTAL</orient> | |
<object class="sizeritem"> | |
<option>0</option> | |
<flag>wxALL</flag> | |
<border>5</border> | |
<object class="wxButton" name="stone_button"> | |
<label>ぐー</label> | |
<default>0</default> | |
</object> | |
</object> | |
<object class="sizeritem"> | |
<option>0</option> | |
<flag>wxALL</flag> | |
<border>5</border> | |
<object class="wxButton" name="scissors_button"> | |
<label>ちょき</label> | |
<default>0</default> | |
</object> | |
</object> | |
<object class="sizeritem"> | |
<option>0</option> | |
<flag>wxALL</flag> | |
<border>5</border> | |
<object class="wxButton" name="paper_button"> | |
<label>ぱー</label> | |
<default>0</default> | |
</object> | |
</object> | |
</object> | |
</object> | |
</object> | |
</resource> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment