I'm willing to write an app for simulation and analysis of electrical circuits in UWP-Win10 (fall creators) C#, for publish in Windows Store. I have all math, algorithms and classes figured out. But i'm stuck on how to display a circuit on screen. Below is an example image of what I want to show in UWP app.
The user must be able to put symbols of electric elements (resistors, capacitors, etc.), connect with wires, move elements (with drag and drop), rotate, etc., What is the best (XAML) visual control, or combination of controls for doing this?, Grid? Canvas? I guess the elements must be objects, which are instances of classes. I have knowledge of designing class diagrams, writing algorithms but I find a bit difficult the visual things. These objects must support click events, and drag and drop for moving in board. How can I do this? I really have no clue of a correct approach to solve this layer of software.
Thanks in advance.