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
340
Content of inactive cells in the same active row are not shown
posted

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!

Parents
  • 71886
    Suggested Answer
    Offline posted

    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.

Reply Children
No Data