I have a question. Is it possible to change X and Y point values type from int to Int32? I have panel 50 000 pixels wide and I can only recognize the X dimension up to about 32k.
public void pictureBox2_Click(object sender, EventArgs e)
{
Point point = pictureBox2.PointToClient(MousePosition);
MessageBox.Show(point.ToString());
MessageBox.Show(point.X.ToString());
}
This is my code, I need change X to Int32. Any solution? Thanks in advance,