Xceed DataGrid for Silverlight Documentation
FixedFooters Property (DataGridControl)
Example 


Gets a collection that contains the elements that are located in the fixed, non-scrollable footer section of a grid.
Syntax
'Declaration
 
Public ReadOnly Property FixedFooters As Collection(Of UIElement)
'Usage
 
Dim instance As DataGridControl
Dim value As Collection(Of UIElement)
 
value = instance.FixedFooters
public Collection<UIElement> FixedFooters {get;}

Property Value

A generic Collection of UIElement objects representing the elements that are located in the fixed, non-scrollable footer section of a grid.
Remarks
When the UseDefaultHeadersFooters property is set to false, all default items contained in the header and footer sections will be removed. This includes the ColumnManagerRow, whose cells are used as column headers (see ColumnManagerCell class) and through which the items in a grid can be sorted, reordered, grouped, etc.
Example
<sldg:DataGridControl x:Name="sldgDataGridControl"
                      ItemsSource="{Binding Path=Orders}"
                      UseDefaultHeadersFooters="False">
   <sldg:DataGridControl.FixedHeaders>
       <sldg:GroupByControl/>
       <sldg:ColumnManagerRow />
   </sldg:DataGridControl.FixedHeaders>

   <sldg:DataGridControl.FixedFooters>
       <Button Content="Hello World"/>
   </sldg:DataGridControl.FixedFooters>
</sldg:DataGridControl>
Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

DataGridControl Class
DataGridControl Members
DataGridControl.UseDefaultHeadersFooters Property

Header and Footer Sections

Headers and Footers

Send Feedback