How to hide header for Silverlight 3 DataForm control

I am using DataForm control in my SL3 application, it has a header with some default icons (edit, delete, navigation, etc.), I can prevent most of the icons from appearing in the header, but want to get rid of the header together . no luck with google ...

+1


a source to share


3 answers


In the xaml, set the property on the data form like this:



CommandButtonsVisibility="None"

      

+3


a source


I had a similar problem with the title of a new popup control in SL3.

Changing the look / behavior of the new popup control (ChildWindow) in Silverlight 3



Same solution?

0


a source


Not too sure about Silverlight 3, but in Silverlight 4 it looks like this:

HeaderVisibility="Collapsed"

      

0


a source







All Articles