I have a simple Lightswitch Ap that I am building for use in my business and as a test of Lightswitch. The Ap uses a single table with many fields so I am using a list-Detail screen with the basic info displayed on the selected item along with 3 buttons that open specialty detail screens. The problem I am having is that each detail screen opens in a tab with an identical title of the first field in the table - Table Name (i.e. "HP - Equipment"). all I can find states you should override the DisplayName in the InitializeDataWorkspace() method for that screen but I just see my title briefly flicker as the screen is created only to be overwritten by the default.
Not much code to show...
partial void FinancialDetail_InitializeDataWorkspace(List<IDataService> saveChangesTo)
{
// Write your code here.
this.DisplayName = "Financial Detail";
}