Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1080
Position of Field Chooser
posted

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

Parents
No Data
Reply
  • 69686
    posted

    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;

Children