Join Date: Aug 2007
Posts: 8643
User-Rating:
|
updaten in die andere Richtung
hier eine Beispielform wie einfach sich eine Form erstellen lässt:
CPP Code: class MainForm : public Form { private: LinkLabel *linkLabel; void InitializeComponent() { this->SetText("OldSchoolHack GUI by KN4CK3R"); this->SetSize(Drawing::Size(218, 289)); linkLabel = new LinkLabel(); linkLabel->SetName("linkLabel"); linkLabel->SetLocation(Drawing::Point(3, 9)); linkLabel->SetText("visit www.oldschoolhack.de"); linkLabel->GetClickEvent() += ClickEventHandler(std::bind(&MainForm::linkLabel_Click, this, std::placeholders::_1)); this->AddControl(linkLabel); } public: MainForm() : Form() { InitializeComponent(); } void linkLabel_Click(Control *control) { ShellExecute(0, "open", "www.oldschoolhack.de", NULL, NULL, SW_SHOWNORMAL); } };
greetz KN4CK3R
|