I am trying to make one method for the touch element to the rectangles for my synthboard. But I have come across a small problem. When I try to make it so it will pick up where you have touched normally would be the actual name of the rectangle so I tried to make it so it will input the rectangle's name when I call it but I just comes up as an error. It would be easier if I show you the problem rather than try to explain it.The error appears at "point.TouchDevice.DirectlyOver == rectInput".
public void touchEvent(Rectangle rectInput, string rectName)
{
TouchFrameEventArgs e;
TouchPointCollection points = e.GetTouchPoints(null);
foreach (TouchPoint point in points)
{
if (point.Action == TouchAction.Down &&
point.TouchDevice.DirectlyOver == rectInput)
{
try
{
singleStop(synthSoundEffectInstanceDictionarySearch(rectName));
}
catch (Exception)
{
playSound(synthSampleDictionarySearch(rectName),
synthSoundEffectInstanceDictionarySearch(rectName));
}
}
}
}