or
public class MyEntity : INotifyPropertyChanged{ private bool _myBool; public bool MyBool { get { return _myBool; } set { _myBool = value; PropertyChanged(this, new PropertyChangedEventArgs("MyBool")); } } public event PropertyChangedEventHandler PropertyChanged;}public partial class MainWindow { public MainWindow() { InitializeComponent(); DataContext = this; MyEntities = new ObservableCollection<MyEntity> { new MyEntity(), new MyEntity(), new MyEntity() }; MyCv = (ListCollectionView)CollectionViewSource.GetDefaultView(MyEntities); MyCv.Filter = MyBoolFilter; } public ObservableCollection<MyEntity> MyEntities { get; set; } public ListCollectionView MyCv { get; set; } private bool MyBoolFilter(object item) { return !((MyEntity)item).MyBool; } }<Window x:Class="GridViewTest.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <telerik:RadGridView ItemsSource="{Binding MyCv}"/> </Window>
private void SetupHorizontalSlider() { //clear the grid of any controls before setting up a control layoutRoot.Children.RemoveAt(0); //create the RadGauge mGaugeControl = new RadGauge() { Name = "mGaugeControl" }; //create the LinearGauge LinearGauge linearGauge = new LinearGauge(); //add the LinearGauge to the RadRauge container mGaugeControl.Content = linearGauge; //create the LinearScale LinearScale linearScale = new LinearScale() { Name = "linearScale", Min = 0, Max = 10, StartWidth = 0.1, EndWidth = 0.1, StrokeThickness = 1, MajorTicks = 10, MiddleTicks = 1, MinorTicks = 5, Orientation = Orientation.Horizontal, Left = 0.15, Top = 0.13, RelativeHeight = 0.70 }; linearScale.MajorTick.Length = 0.01; linearScale.MajorTick.TickWidth = 0.1; linearScale.MajorTick.Location = ScaleObjectLocation.OverCenter; linearScale.MiddleTick.Length = 0.025; linearScale.MiddleTick.TickWidth = 0.5; linearScale.MiddleTick.Location = ScaleObjectLocation.OverCenter; linearScale.MinorTick.Length = 0.02; linearScale.MinorTick.TickWidth = 0.3; linearScale.MinorTick.Location = ScaleObjectLocation.OverCenter; linearScale.SizeChanged += new System.Windows.SizeChangedEventHandler(linearScale_SizeChanged); linearScale.Label.Location = ScaleObjectLocation.Inside; //add the RadialScale to the RadialGauge Items collection linearGauge.Items.Add(linearScale); //use the marker styled in the resource section of this page mMarkerTemplate = this.Resources["HorizontalTopMarkerTemplate"] as ControlTemplate; //create the LinearBar indicator and add it to the indicators collection mLinearBar = new LinearBar() { Name = "bar", Location = ScaleObjectLocation.OverCenter, EmptyFill = System.Windows.Media.Brushes.Transparent, Background = System.Windows.Media.Brushes.Green, IsAnimated = true, Duration = new Duration(TimeSpan.FromSeconds(2)), Value = 2 }; linearScale.Indicators.Add(mLinearBar); //create marker indicator to add to the indicators collection mNeedle = new Marker() { Name = "needle", Template = mMarkerTemplate, IsAnimated = true, Duration = new Duration(TimeSpan.FromSeconds(2)), Location = ScaleObjectLocation.OverCenter, RelativeHeight = 0.1, RelativeWidth = 0.09, Value = 2 }; linearScale.Indicators.Add(mNeedle); //register the needle with the page so that the animation will work correctly RegisterControl(mNeedle.Name, mNeedle); RegisterControl(mLinearBar.Name, mLinearBar); //create NumericIndicator to add to the RadialScale Indicators collection //mValueIndicator = new NumericIndicator(); mGaugeScale = linearScale; mGauge = linearGauge; layoutRoot.Children.Add(mGaugeControl); }void linearScale_SizeChanged(object sender, System.Windows.SizeChangedEventArgs e){ ((Telerik.Windows.Controls.Gauges.LinearScale)(sender)).Top = (e.NewSize.Height / e.NewSize.Width) / 2;}