or
<telerik:RadRibbonDropDownButton.DropDownContent> <StackPanel > <StackPanel Orientation="Horizontal" x:Name="LayoutRoot"> <ListBox Name="ListBox" ItemsSource="{Binding Path=Columns, ElementName=TableGrid}"> <ListBox.ItemTemplate> <DataTemplate> <CheckBox Content="{Binding Header}" IsChecked="{Binding IsVisible, Mode=TwoWay}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> <telerik:RadGridView Name="TableGrid" ItemsSource="{Binding Units}" ShowGroupPanel="False" /> </StackPanel> </StackPanel> </telerik:RadRibbonDropDownButton.DropDownContent>