In my WPF Application I use the Field Chooser of the xamDataGrid. The user of the application uses a multi monitor configuration. On this configuration the Field Chooser pops up on an other montor than the main window.
How can I position the FieldChooser-Window ? I did some Test with the FieldChooserOpening event but without success.
Markus
Hello Markus,
I also tested this on a dual monitor machine and I was not able to reproduce this with the sample from the XamFeatureBrowser. What steps to do you perform to reproduce this?
You can manually position the ToolWindow that the FieldChooser is hosted with its Top, Left properties in the FieldChooserOpening event:
e.ToolWindow.Left = 100;
e.ToolWindow.Top = 100;
Hello Alex
Thanks for you answer. I didn't see it myself because I don't have a dual screen configuration. But I was told by the person that tests the application, that the field chooser opens on a different screen than the application.
One specialty is that the XamDataGrid is part of a user control. Perhaps this make the difference. Futhermore I don't use the newest version yet.
I will collect some more information about the problem
Best Regards