Slider erstellen?



  • Hi,

    bin so ziemlich neu in der WinAPI.
    Habe zumTesten ein Programm welches alle
    Arten von Objekten anzeigen soll.
    Also ComboBox, Textfelder etc.
    Habe aber noch keine Slider hinbekommen.

    #ifndef ELEMENT_H
    #define ELEMENT_H
    
    #include <windows.h>
    
    #using <mscorlib.dll>
    #using <System.dll>
    #using <System.Drawing.dll>
    #using <System.Windows.Forms.dll>
    
    using namespace System;
    using namespace System::Drawing;
    using namespace System::Windows::Forms;
    
    #include <windows.h>
    #include "OpenGLApp.h"
    
    __gc class SForm : public Form
    {
    public:
    	SForm( OpenGLApp* opengl );
    private:
    	Label *lblItemSelected;
    	Label *lblItemSelected2;
    	Label *lblItemSelected3;
    	Label *lblItemSelected4;
    	Label *lblItemSelected5;
    	Label *lblItemSelected6;
    
    	ComboBox *cboModelsystem;
    	ComboBox *cboModels;
    	ComboBox *cboCaptureSize;
    	ComboBox *cboSingleMulti;
    	ComboBox *cboFirewireUSB;
    
    	Button	*btoStart;
    
    	TextBox *tboThreshold;
    
    private:
    	void SelectionChanged(Object *Sender, EventArgs *Args);
    	void OnButtonClicked(Object* Sender, EventArgs *Args);
    	void OnPressEnter(Object* Sender, KeyPressEventArgs *Args);
    
    };
    

    Wo erhalte ich eine Übersicht der möglichkeiten von der WinAPI?

    Gruß und Dank



  • Das sieht irgendwie nicht nach WinAPI aus?!

    Ansonsten: Windows API Reference 🙂


Anmelden zum Antworten