C1.Silverlight.FlexGrid Namespace > C1FlexGrid Class : KeepCurrentVisible Property |
'Declaration Public Property KeepCurrentVisible As System.Boolean
public System.bool KeepCurrentVisible {get; set;}
This property applies only to bound mode. If KeepCurrentVisible is set to true, then the grid will automatically scroll to show the item that is selected in the System.ComponentModel.ICollectionView being used as an items source. The current selection may be set in code, or by selecting an item in another control that is bound to the same data source.
public MainPage() { InitializeComponent(); _flex..KeepCurrentVisible = true; } void Top_Click(object sender, RoutedEventArgs e) { _flex.CollectionView.MoveCurrentToFirst(); } void Bottom_Click(object sender, RoutedEventArgs e) { _flex.CollectionView.MoveCurrentToLast(); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2