My biggest WTF moment so far with silverlight.. there is no Visibility.Hidden enum value.
So much for reusing all those valueconverters.. oh the pain!
C#
namespace System.Windows { // Summary: // Specifies the display state of an element. public enum Visibility { // Summary: // Display the element. Visible = 0, // // Summary: // Do not display the element, and do not reserve space for it in layout. Collapsed = 1, } }