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
762
Drawing a sliding panel between the ribbon and top grid
posted

I have a WinForms application with an UltraToolbarsManager containing a Ribon, and a MainForm_Fill_Panel containing two UltraGrids and a Splitter. My application periodically gets alerts from a server, which I would like to write to a sliding panel that appears below the ribbon and above the top grid in the Fill panel

By "sliding panel" I mean the top grid visually shrinks vertically on the screen, hiding the last few rows of the top grid, and opens up a space above the grid where I can write the alert text. When the alert is over I want to visually expand the grid, revealing more rows. Is there an Infragistics control that can do this, or a tutorial on how to accomplish this? If necessary the panel does not have to slide, it could just redraw the Fill panel with a smaller grid and the alert text above it, but it needs to be a separate control and not part of the grid.

Parents
  • 44743
    posted

    The best way to do this would probably be to have a panel docked to the top of the form below the ribbon. This panel which will display the alert message. When there is no message, simply hide the panel by settings its Visible property to False. When a message comes in, show the panel again and it will shift down the MainForm_Fill_Panel.

Reply Children