Hi,
How can I create a mask to cover ALL the elements of a Windows/Canvas (with subcanvas/elements inside)?
Thanks in advance
EDIT: I want to add more controls/elements/whatever after I create the mask. Is that ok? How?
Hi,
How can I create a mask to cover ALL the elements of a Windows/Canvas (with subcanvas/elements inside)?
Thanks in advance
EDIT: I want to add more controls/elements/whatever after I create the mask. Is that ok? How?
Hi,
I am not sure you have to "mask" controls. Why don't you use the visibility property ?
For example, if you have a stackPanel and want to mask it and its content, just put
<StackPanel Visibility="Hidden">
...
</StackPanel>
By this way, you can control the visibility of each widget. If you want to "add" or make others visible, just set the Property to "Visible".