I have a panel called panel1.
What I wonder how it is possible to do is that when you click the mouse on the location 304,369 in the panel, I want to display a messageBox.
How would that be possible to identify the location in code ?
private: System::Void panel1_MouseDown(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e)
{
if( ??? )
{
MessageBox::Show("You clicked Location 304,369 in the panel
with the mouse !");
}
}