This folder contains others examples.
- AutoScroll shows how to create an auto scroll widget with wxPanel.
- BitmapButtonWithLabel shows how to create a Button with Bitmap and Label widget with wxButton.
- BorderStyle demonstrates how to set border style with wxStyle argument.
- BoxedPanel shows how to create boxed panels with wxPanel and wxBoxSizer.
- ColoredFrames shows how to create colored background forms.
- Colors demonstrates the use of wxControl widget with wxColour..
- CursorFromFile shows how to create Cursor from cur or ani file with wxCursor.
- DirDialogShowWindowModal shows how to create a DirDialogWindowModal with wxDirDialog.
- DisplayInformations shows how to get screen information of wxDisplay.
- FrameAndThread shows how to dialog with a frame widget from a thread.
- FrameAndThreadWithCallAfter shows how to dialog with a frame widget from a thread with CallAfter method.
- FrameIcon shows how to assign an icon to frame.
- FrameShow shows how to display a frame in different ways.
- FrameShowHide demonstrates the use of wxFrame Show, Hide and Close methods.
- MessageDialogShowWindowModal shows how to create a MessageDialog dialog with wxMessageDialog using ShowWindowModal method.
- OpenFileDialogShowWindowModal shows how to create a OpenFileDialogShowWindowModal dialog with wxFileDialog using ShowWindowModal method.
- SaveFileDialogShowWindowModal shows how to create a SaveFileDialogShowWindowModal dialog with wxFileDialog using ShowWindowModal method.
- ShellExecute shows how to launch process with wxShellExecute.
- StaticBoxAndCheckBox shows how to use wxStaticBox and wxCheckBox.
- StaticBoxAndRadioButton shows how to use wxStaticBox and wxRadioButton.
- StaticTextAndUnicode demonstrates the use of wxStaticText widget and Unicode text.
- TextCtrlMultiline shows how to create a multiline TextCtrl widget with wxTextCtrl.
- TextEntryDialogPassword shows how to create a password TextEntryDialog dialog with wxTextEntryDialog.
- TextEntryDialogMultiline shows how to create a multiline TextEntryDialog dialog with wxTextEntryDialog.
- UserDialogShowWindowModal shows how to create a UserDialog with wxDialog using ShowWindowModal method.
To build this project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start Others.sln
Select any project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./Others.xcodeproj
Select any project and type Cmd+R to build and run it.
mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./Others.cbp > /dev/null 2>&1
Select any project and type F10 to build and run it.
mkdir build
cd build
cmake ..
cmake --build . --config Debug
./AnyProject