Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Bookstore...
 
Feedback
Tip Jar
 
XML RSS Feed
 
 
 
MSDN Visual Basic Community
 
 
 
 
 
 
TitleDisplay a loose XAML page in an HTML IFRAME element
DescriptionThis example shows how to display a loose XAML page in an HTML IFRAME element.
KeywordsXAML, WPF, loose xaml, iframe
CategoriesVB.NET, WPF, Internet
 

The HTML file simply uses an IFRAME element with SRC attribute set to the XAML page's URL. This example sets the IFRAME's width to half the browser's available width and its height to 150.

 
<HTML>
<BODY>

Here's the XAML page:
<P>

<IFRAME SRC="CritterList.xaml"
    WIDTH="50%" HEIGHT="150" />

</BODY>
</HTML>
 
 
Copyright © 1997-2008 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated