I'm creating a CAD program in WPF that adds and deletes lines and rectangles, both of which are described by a PathGeometry. When I get further along with the program, it will contain a great variety of different PathGeometries, each of which make up the property of individual DrawingVisuals. I'm using the Visual class for performance reasons.
Since each DrawingVisual is virtually identical, because all it is is just a DrawingVisual made up a PathGeometry, it has no unique identifier. I need an identifier of some sort so that when I right-click on a line or rectangle I can draw some handles on it to make it modifiable using the mouse. (I want the end-points of the line to be moveable, the rectangle to be stretchable, etc.) There are examples on line of handles on Lines, Bezier curves, etc. but they don't deal with the issue of having different types.
In the below code, which is just like mine, the clicking of the mouse retrieves the drawingVisual object. But, since drawingVisuals don't have any special feature on them that says, "This is a rectangle" or "This is a line", I need to figure out a way of getting that information from the HitTestResult result. Knowing that, I can determine how to treat it when I want to modify it. A line is going to have 2 control points, a rectangle is going to have 4, and some of my other (not yet made yet) geometries will have 6 or more control values.
When I go to the visualTree in debugging mode (accessed by Debug>Window) all it says is "DrawingVisual". That's not enough information to know how to treat it as a line or a rectangle.
So, on big-wig CAD programs, they allow you to modify the object that you have clicked on. The software has some way of knowing what you clicked on, and I'd like to have that feature on my beginner-level CAD program.
I tried using the debug feature and looking for some sort of unique identifier, but couldn't find one. I thought about using a List and giving each item as it's created, but I have no way of linking it with the HitTestResult result.
It can be done, so that isn't an issue, but I need a scheme for imitating how CAD programs accomplish this feature.
private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
// Retrieve the coordinate of the mouse position.
Point pt = e.GetPosition((UIElement)sender);
HitTestResult result = VisualTreeHelper.HitTest(myCanvas, pt);
if (result != null)
{
// Perform action on hit visual object.
}
}
Any help in telling me how to go about it would be appreciated. Basically, what is the scheme that high-feature CAD programs use to track what type of Visual the mouse has clicked on?
TYIA