XRC: make wxStaticText's wrap property a dimension.
[wxWidgets.git] / samples / sample.rc
1 /////////////////////////////////////////////////////////////////////////////
2 // Name:        samples/samples.rc
3 // Purpose:     a standard Win32 .rc file for the wxWindows samples
4 // Author:      Vadim Zeitlin
5 // Modified by:
6 // Created:     04.08.03
7 // Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence:     wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // this minimal resource file is all what is needed for most of the wxWindows
12 // samples
13
14 // note that the icon used by the Explorer (i.e. the programs icon) is the
15 // first icon in the executable and the icons are sorted both by their order
16 // (Win9x) and by alphabetically (!) (NT), so put this icon first and give it
17 // a name starting with "a"
18 aaaaaaaa ICON "sample.ico"
19
20 // this icon is used with wxFrame::SetIcon()
21 sample ICON "sample.ico"
22
23 // set this to 1 if you don't want to use manifest resource (manifest resource
24 // is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt
25 // for more information)
26 #define wxUSE_NO_MANIFEST 0
27
28 // this is not always needed but doesn't hurt (except making the executable
29 // very slightly larger): this file contains the standard icons, cursors, ...
30 #include "wx/msw/wx.rc"
31