I am using Visual Studio 2010 and WPF.
I am creating a new control that inherits ContentControl, and I want to hide the Content property so that it is not visible in the Properties window at design time.
I tried using
[Browsable(false)]
as in WinForms, but it does not work.
Any idea on how to solve this problem?
Thank.
source
share