I'm using Visual Studio 2010 and WPF.
I'm creating a new Control that inherits from ContentControl and I wanna hide the Content property so it will be invisible in the Properties window at design time.
I tried with
[Browsable(false)]
like we do in WinForms but it doesn't work.
Any idea about how to solve this?
Thank you.