ich habe eine Windows Form Anwendung, dort habe ich ein Hintergrundbild.
Sieht zwar jetzt auch schon teils gut aus aber da ist noch dieser rand ich weis nicht ob der rand zu 100% border ist. Wie entferne ich diesen?
Jetziger code;
Code:
this->btt_gmod->BackColor = System::Drawing::Color::Black; this->btt_gmod->BackgroundImage = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"btt_gmod.BackgroundImage"))); this->btt_gmod->ForeColor = System::Drawing::SystemColors::ButtonFace; this->btt_gmod->Location = System::Drawing::Point(10, 19); this->btt_gmod->Name = L"btt_gmod"; this->btt_gmod->Size = System::Drawing::Size(119, 25); this->btt_gmod->TabIndex = 0; this->btt_gmod->Text = L"Grove Up"; this->btt_gmod->UseVisualStyleBackColor = false; this->btt_gmod->Click += gcnew System::EventHandler(this, &Form1::btt_gmod_Click);






