Здравствуйте. Подскажите, пожалуйста, как нарисовать линию на PictureBox в visual studio? Делал вот так, ошибок нет, но ни чего не происходит...
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
pictureBox1->Refresh();
}
private: System::Void pictureBox1_Paint(System::Object^ sender, System::Windows::Forms::PaintEventArgs^ e) {
// Create pen.
Pen^ blackPen = gcnew Pen( Color::Black,3.0f );
// Create location and size of ellipse.
int x = 0;
int y = 0;
int width = 100;
int height = 100;
// Draw ellipse to screen.
e->Graphics->DrawEllipse( blackPen, x, y, width, height );
}