|
|
Questions and answers for Application and Deployment Frame.
|
41. Application and Deployment Frame
|
| 41.1 What
is the difference between Frame and NavigationWindow ?
|
| 41.2 How
does Rendering work in Frame control ?
|
| 41.3 Can
I add dynamic HTML content to a Frame control ?
|
41.1 What is the difference between Frame and NavigationWindow ?
|
|
NavigationWindow is a top level window and frame is a part of window or another
frame. A frame can be added to a NavigationWindow or another Frame. By default,
NavigationWindow contains Back / Forward buttons whereas Frame doesn't.
|
41.2 How does Rendering work in Frame control ?
|
|
WPF changes the way it renders the frame control based on the content it
contains. It renders using the WPF rendering pipeline when the content is an
XAML or loose XAML file whereas it uses Internet Explorer's GDI based rendering
when the content is HTML. Therefore, you will encounter issues when applying
transforms to a Frame with HTML content. Issues also occur when
"ApplyTransparency" is enabled.
|
41.3 Can I add dynamic HTML content to a Frame control ?
|
|
The current version displays the HTML content from an URI and it does not
display dynamic contents, so an alternate would be to host Windows Form's Web
browser which displays content from multiple sources.
|
|