I'm using the automation API to create custom control patterns. Now that I've created my custom patterns, I don't know how to retrieve the existence of my new patterns. I've tried to use AutomationPattern.LookupById() in the following code:
PatternWrapper pattern = new PatternWrapper();
int res = pattern.RegisterRotatePattern();
AutomationPattern rotatePattern = AutomationPattern.LookupById(res);
Assert.IsTrue(new List<String (Enum.GetNames(typeof(PatternInterface))).Contains("CustomRotatePattern"));
Is there another way to retrieve the pattern or perhaps I need to derive a custom AutomationPeer??
I do get a pattern id after registering the pattern but still have no idea how to retrieve the pattern. Any ideas would be very helpful!! Thanks in advance.