Hi BoucherS,
I got it working by doing this
I got it working by doing this
var propGrid = GetPropertyGrid(this);
if (propGrid != null)
{
var selectedItem = selectedItems.SingleOrDefault();
propGrid.SelectedObject = selectedItem;
propGrid.Update();
}
Thank you.