我正在使用Visual C ++ 2008,Express Edition。
我需要设计一个充满颜色的矩形。我设计的矩形 只是没有填补。
graphics ^sheet = panel1->CreateGraphics();
System::Drawing::Pen ^biro =
gcnew System::Drawing::Pen(System::Drawing::Color::Blue);
foglio->DrawRectangle(biro,System::Drawing::Rectangle::
Rectangle(100,100,10,50));
一切正常,但我希望整个矩形充满蓝色。
我该如何管理?
谢谢和问候
Uwe_98