OldSchoolHack

Register / Login English

OldSchoolHack GUI

icon Thread: OldSchoolHack GUI

Join Date: Aug 2007

Posts: 8646

User-Rating:

199 positive
33 negative
@InUrFace1337: wie gesagt, läuft das mit jeder Grafikengine, aber die Screenshots sind von D3D.


current Features:

Controls
- Forms
- Panel
- GroupBox
- Label
- LinkLabel
- CheckBox
- RadioButton
- Button
- ComboBox
- ListBox
- PictureBox
- ProgressBar
- TrackBar
- TabControl
- TabPage
- TextBox
- Timer

- animated pictures
- different cursors
- modal windows
- unicode support

- easy to use:

CPP Code:
  1. #include "Form"
  2. class MyForm : public Form
  3. {
  4. private:
  5. void InitializeComponent()
  6. {
  7. //this method initialize all controls
  8. }
  9.  
  10. public:
  11. MyForm()
  12. {
  13. InitializeComponent();
  14. }
  15. };
  16. ...
  17. std::shared_ptr<MyForm> myForm(new MyForm());
  18. myForm->Show(myForm);
  19. /*myForm->ShowDialog(myForm, [](DialogResult result)
  20. {
  21.   //this method gets called when the form got closed
  22. });*/
greetz KN4CK3R

__________________

Hallo