The FlexGrid control can be added to a WPF application through XAML designer or through code as illustrated below.
<Window x:Class="FilterRow.MainWindow" ... xmlns:c1="http://schemas.componentone.com/winfx/2006/xaml" ... > <Grid x:Name="LayoutRoot"> <c1:C1FlexGrid/> </Grid> </Window>
using C1.WPF.FlexGrid;
var grid = new C1FlexGrid(); Parent.Children.Add(grid);