我有一个带有框架对象的WPF窗口,我想在其中加载通过http-request接收的xaml代码。(请求响应是带有xaml代码的URL或文件)。如何初始化此页面或加载框架对象?
hrysbysz1#
可以使用XamlReader以编程方式加载XAML。
XamlReader
<Grid> <Frame x:Name="XamlFrame" /> </Grid>
public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); this.XamlFrame.Content = XamlReader.Parse(@" <TextBlock xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation"" Text=""This is a test."" />"); } }
1条答案
按热度按时间hrysbysz1#
可以使用
XamlReader
以编程方式加载XAML。