views:

19

answers:

0

Hi, all!! I have a list view and bind its items to the my database by means of datacontext.

 <ListView x:Name="waypointList"                    
       ItemsSource="{Binding }" 
       BorderThickness="0" 
       ItemContainerStyle="{DynamicResource ListItemStyle}" > 
        <ListView.View>
            <GridView AllowsColumnReorder="False">   
                <GridViewColumn CellTemplate="{StaticResource myCellTemplate1}"/>  
                <GridViewColumn CellTemplate="{StaticResource cellTemplate2}"/>  
                <GridViewColumn CellTemplate="{StaticResource cellTemplate3}" />
                <GridViewColumn CellTemplate="{StaticResource cellTemplate4}"/>
                <GridViewColumn CellTemplate="{StaticResource cellTemplate5}"/>  
            </GridView> 
        </ListView.View>

How can I add to this listview last row, which represents constant fields?? And when my items are updated, this row doesn't change because it isn't in base. It have to be not the total row which always in the bottom and separated from the main listview. It have to be placed inside the scrollview.

Thanks in advance.