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;