Skip to content

Latest commit

 

History

History
executable file
·
90 lines (64 loc) · 4.96 KB

README.md

File metadata and controls

executable file
·
90 lines (64 loc) · 4.96 KB

Win32.Gui Examples

Shows how to use Win32 controls by proghramming code (c++17).

win32

  • Window Shows how to create a Window.
  • MainMenu Shows how to create a MainMenu.
  • Toolbar Shows how to create a Toolbar.
  • GroupBox Shows how to create a GroupBox.
  • Panel Shows how to create a Panel.
  • TabControl Shows how to create a TabControl.
  • Button Shows how to create a Button and Event Click.
  • CheckBox Shows how to create a CheckBox.
  • ComboBox Shows how to create a ComboBox.
  • ProgressBar Shows how to create a ProgressBar.
  • RadioButton Shows how to create a RadioButton.
  • StaticPicture Shows how to create a SttaticPicture from bitmap file.
  • StaticText Shows how to create a StaticText.
  • TextBox Shows how to create a TextBox.
  • TrackBar Shows how to create a TrackBar.
  • Timer Shows how to create a Timer.

Generate and build

To build this project, open "Console" and type following lines:

mkdir build && cd build
cmake .. 
start Win32.Gui.sln

Select any project and type Ctrl+F5 to build and run it.