private void grdCases_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
//if (e.ClickCount >= 2) 
// localViewModel.GrdCasesDoubleLeftClickCommand.Execute(null);
}
e.ClickCount is not available.
Having read previous posts I changed MouseButtonEventArgs to
Telerik.Windows.Input.
MouseButtonEventArgs
and when I run the application and access the page I get:
System.Windows.Markup.XamlParseException occurred
  Message=Failed to assign to property 'System.Windows.UIElement.MouseLeftButtonDown'. [Line: 43 Position: 192]
  LineNumber=43
  LinePosition=192
  StackTrace:
       at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)
       at Northgate.Platinum.Modules.Cases.Views.CaseListView.InitializeComponent()
       at Northgate.Platinum.Modules.Cases.Views.CaseListView..ctor(CaseListViewModel viewModel)
  InnerException: System.IO.FileLoadException
       Message=Could not load file or assembly 'System.Windows.Controls.Toolkit, Version=4.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest. (Exception from HRESULT: 0x80131053)
       StackTrace:
            at System.Reflection.RuntimeAssembly.nLoadImage(Byte[] rawAssembly, Byte[] rawSymbolStore, Evidence evidence, StackCrawlMark& stackMark, Boolean fIntrospection, SecurityContextSource securityContextSource)
            at System.Reflection.Assembly.Load(Byte[] rawAssembly)
            at MS.Internal.JoltHelper.LoadAssembly(Byte[] buffdata, Assembly& loadedAssembly)
       InnerException: 
Any help would be appreciated

