Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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));
            }
        }
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.