Browse By Tags

  • Right click context menu disable items when on the UltraGrid header

    My current setup:

    private void ultraGridRequirementsGap_MouseUp(object sender, MouseEventArgs e)

            {

                if (e.Button == System.Windows.Forms.MouseButtons.Right)
                {
                    UIElement ue = this.ultraGridRequirementsGap.DisplayLayout.UIElement.ElementFromPoi…
  • How to disable scrolling on UltraGrid if context menu is open

    1. In windows file browser, internet explorer etc., if you open a context menu - the wheel scrolling is not possible.

    2. And by right click on unselected row it will be first selected, and other selection is cancelled.

    I have a task to implement this…