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
60
WinGrid and WindProgressBar as column editor control
posted

Hi All,

 

I'm using WinProgressBar as column editor to show the  progress for particular row. It looks like the followin:

| action_1_name | action_1_progress |

| action_2_name | action_2_progress |

...

| action_N_name | action_N_progress |

The general question is: how can I modify the progress bar properties for particular row? For example - I need that while action in progress the progress bar color will be let say red, but once the action complete for particular row - the progress  bar become greeen for this row. Is it possible?

 

thx

Update: I decided to play with progress bar colors but it doesn't work for me at all. I tried to set the progress bar collor in InitializeLayout like this:

        private void Grid_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
        {
            progressBar.UseOsThemes = DefaultableBoolean.False;
            progressBar.FillAppearance.BackColor = Color.Green;
            e.Layout.Bands[0].Columns[1].EditorControl = progressBar;
        }

But the color still the same(system one?). Can any1 have any idea?