hi
I am using ccf 2009 QFE.
I want to integrate applications into wpf-based deckcontrol not tab control.
In
Add(object child, string initializationXml, bool useToolbar, bool closeButton) method ,namespace:
Microsoft.Ccf.Desktop.UI.Controls.Wpf
if ((
this.deckControl.Count ==
0) && (
this.tabControl.Count ==
0))
{
return this.ShowDeckControl(
child,
closeButton,
bar);
}
return this.ShowTabControl(
child,
closeButton,
bar);
i guess that if i want to use deckcontrol to host applications ,i must use this.ShowDeckControl(child, closeButton,bar), but when i load second applicaiton , it will use ShowTabControl(chile,closeButton,bar) to show a tab control , does anybody has some sample of using wpf-based deckcontrol?
Thanks.