How to change the visibility of Formula Bar and Headers at runtime in WinRT Spreadsheet?
Sfspreadsheet allows you to change the visibility of Formula bar and Headers at run time.
Formula Bar visibility
You can change this by setting FormulaBarVisibility property of SfSpreadsheet.
C#
Spreadsheet.FormulaBarVisibility = Visibility.Collapsed;
Headers visibility
You can change this by calling the SetRowColumnHeadersVisibility method of SfSpreadsheet.
C#
Spreadsheet.SetRowColumnHeadersVisibility(false);
The following screenshot illustrates the SfSpreadsheet after collapse visibility of Formula Bar and Headers.

Sample links: