I am new to Ranorex and I want to ask a question about testing custom WPF controls. I have implemented a custom WPF control which directly derives from System.Windows.Controls.Control. First of all, I tried to see my control on Ranorex Spy but I couldn't. than I have learned that I have to override "OnCreateAutomationPeer" and implement a peer class. I have updated my control and at last I have managed to see my control on Spy. Then I tried to get my control on the user code side of a recording(Recordingx.UserCode.cs) in order to call some properties of the control for validation but I could not manage. And as I understand, if I manage to get my control's adapter, it will have the type Ranorex.Unknown. So i will not manage to use the properties. What is your suggestion, is it a bad idea to use Ranorex for testing custom developped WPF controls?

Cheers