I have found a way to add a view in the CaseContactRegion, even though it is not neat and a better way to ensure the Contacts module is loaded first would be appreciated. But now I have another problem.
As shown on the following image, the new tab has no title.
In the model of your custom view have you added and set the Header?
Have a look at the InteractionExtensionSample provided with WDE, that show how the Header is set.
/// <summary>
/// Gets or sets the header to set in the parent view.
/// </summary>
/// <value>The header.</value>
public string Header
{
get { return header; }
set { if (header != value) { header = value; OnPropertyChanged("Header"); } }
}
Sorry for the lack of response, the customer decided they didn’t want it as a tab after all, so I’m putting this on hold until I need it again, if I ever do.