Nothing is displayed when I try this code:
UserControls.ucCallout oCallOutForm = new UserControls.ucCallout();
radCallout.AssociatedControl = oCallOutForm;
radCalloutMarkers.Show(MyCustomUserControl);
When I change the last line to this, the CallOut form is being displayed, but it's being displayed on top of everything else (even other open application windows):
radCalloutMarkers.Show(System.Windows.Forms.Cursor.Position);
I would like to have a callout form which contains a button and when clicked it should show a flyout input form to enter some text. When I use the callout pointing to the cursor position instead of a control, the flyout window is painted behind the callout form so no user input is possible.