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
315
Set UltraPopupContainer location before showing
posted

Is it possible to set the location of the UltraPopupContainer before it is displayed?

It would appear that when the .show() method is called, the control is displayed starting at the point where the mouse is currently located.

Thanks in advance.

Parents
No Data
Reply
  • 5389
    Verified Answer
    posted

    samwise1130,

    There is an overload of the Show() method that accepts a PopupInfo object.  This PopupInfo object gives you a little more flexibility with the UltraPopupContainer.  For example:

                PopupInfo info = new PopupInfo();
                info.PreferredLocation = new Point(400, 400);
                this.ultraPopupControlContainer1.Show(info);

    Hope this helps,

    ~Kim~

Children