|
왕초보예요... 많이 가르쳐 주세요
그룹박스를요 마우스를 눌렸을때 보이게 하구요... 마우스에서 손을 떼면 안보이게 하는건데요
계속 한장소에만 그룹박스가 생기잖아요... 저는 마우스 커서 있는 위치부터 그룹박스가 생기게 하고 싶은
데 어떻게 해야 하나요? 가르쳐 주세요
void __fastcall TForm1::FormMouseDown(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y)
{
Form1->GroupBox1->Visible = true;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormMouseUp(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y)
{
Form1->GroupBox1->Visible = false;
}
//---------------------------------------------------------------------------
|