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
390
About Keeping the Size of EditorControl in a Grid Cell
posted

Hi,

I show UltraProgressBar in a column of UltraGrid using _grid.DisplayLayout.Bands[0].Columns["Progress"].EditorControl = ultraProgressBar1; and make the rows of the grid resizable using _gridActionInfo.DisplayLayout.Bands[0].Override.RowSizing = RowSizing.AutoFree;

When resizing the row, the progress bar in the cell is also resized: the height of the progress bar is always the height of the row. Now I want to keep the original height of the progress bar when resizing the row: when row height changes, the height of the progress bar won't change.  How can I make this happen?