Hi,
When I am in and active row and move to a different cell the other contents of the cells are not shown/displayed, only it they are displayed if the cell become active or the ros becomes inactive!
Thanks and I will try it. But, I worked around it using DisplayLayout!
Hello Alex,
I am wondering why you are doing this in the 'AfterEnterEditMode' event(as I understood), but the reason this is happening I think is because the default ForeColor property has the value Color.FromArgb(0,0,0,0). This is black indeed but with Alpha set to 0. Please try to use
ultraGrid1.ActiveCell.ActiveAppearance.ForeColor = Color.FromArgb(255, 0, 0, 0);
in the same event and observe the difference.
Bottomline, I believe this is expected behavior from the control.
Note that this happens only if I do this code when the it enters edit mode and change the backcolor there:
this.ActiveCell.ActiveAppearance.BackColor = System.Drawing.Color.LightYellow;