I need to Lock all controls of my window except one, if I write
Me.MainGrid.IsEnabled = False
I obtaind the result but many controls change the appearance. I need they maintain the current appearance, like when I open a WinDialog with ShowDialog. To redefine the style af all controls is a too much “chinese” work. There is another way?
Thank you!
Pileggi
You could add a new child (grid, for example) to MainGrid with a transparent background and max column/row span. Also make sure it’s Panel.ZIndex is higher than any other child in MainGrid.