or
private readonly EmployeeContextViewModel _ucvm;public MainWindow() // RadWindow{ InitializeComponent(); _ucvm = new EmployeeContextViewModel(); DataContext = _ucvm; // <<<<<<<<<}<t:RadButton Content="Exit" x:Name="LoginButton" Command="{Binding LogoutCommand}"/>public MainWindow(){ InitializeComponent(); _ucvm = new EmployeeContextViewModel(); LoginButton.DataContext = _ucvm; // <<<<<<<<<<<<<< }Hi,
The IsBusy property of my RadGridView is Bound to the IsChecked property of a checkbox, so if the checkbox is checked the grid shows the loading animation, if you uncheck it the grid shows the data. The problem is that, it only works once. So if you check the chkbx loading is displayed, uncheck and data is shown. Try the second time, third, forth, etc and the loading animation does not appear anymore.
Any ideas how to make it work every time I check the checkbox?
Thanks, Bye,
Andras

((sender
as RadGridView).ItemsSource as IList).Insert(index, draggedItem);
Does this feature work with DataView as ItemSource? How do I need to change to make it work?
Thanks
SelectedItem="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Path=DataContext.SelectedDetailItem}"
SelectedItem="{Binding SelectedDetailItem,ElementName=myViewName}"
