How on earth is one supposed to set this?
Dialog windows have header text, so we need a method for setting this.
Thanks
ET
BTW, your help for XamDialogWindow is incorrect and will not build!
In C#:
myDialogWindow.IsModal = True; this.LayoutRoot.Children.Add(ig); Shouldn't this be: myDialogWindow.IsModal = true; this.LayoutRoot.Children.Add(myDialogWindow);
myDialogWindow.IsModal = True;
True
this.LayoutRoot.Children.Add(ig);
this
Shouldn't this be:
myDialogWindow.IsModal = true;
rue;
this.LayoutRoot.Children.Add(myDialogWindow);
OK, I was being dumb. Solved it :)
Thnx
What about in C#?
You can use the controls Header property:
<ig:XamDialogWindow Content="XamDialogWindow" Header="This is the header text"/>
I will pass your note about the incorrect docs to the team.
Devin