C# WPF元素主机每秒都会崩溃

C# WPF元素主机每秒都会崩溃,c#,wpf,user-controls,crash,C#,Wpf,User Controls,Crash,我在windows窗体项目中有一个WPF用户控件,我遇到了一个问题。由于element host无法在用户控件中加载数据,我的应用程序每秒都会崩溃 当我把它放到WPF项目中时,也会发生同样的事情。我的应用程序每秒钟正常启动一次 知道有什么问题吗?这是我的用户控制代码: <UserControl x:Class="Fleet_management.Info" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/pr

我在windows窗体项目中有一个WPF用户控件,我遇到了一个问题。由于element host无法在用户控件中加载数据,我的应用程序每秒都会崩溃

当我把它放到WPF项目中时,也会发生同样的事情。我的应用程序每秒钟正常启动一次

知道有什么问题吗?这是我的用户控制代码:

<UserControl x:Class="Fleet_management.Info"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             mc:Ignorable="d" Height="492" Width="578">
    <UserControl.Background>
        <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
            <GradientStop Color="#FFE2E2E2" Offset="0" />
            <GradientStop Color="White" Offset="1" />
        </LinearGradientBrush>
    </UserControl.Background>

    <UserControl.Resources>
        <XmlDataProvider x:Key="rssData" XPath="//item" Source="******" />
    </UserControl.Resources>

    <Grid Margin="3" Height="598" Width="565">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="252*" />
            <ColumnDefinition Width="90*" />
            <ColumnDefinition Width="223*" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="177*" />
            <RowDefinition Height="55*" />
            <RowDefinition Height="122*" />
            <RowDefinition Height="177*" />
        </Grid.RowDefinitions>

        <ListBox x:Name="lstItems" Margin="3,0" ItemsSource="{Binding Source={StaticResource rssData}}"
                 SelectedIndex="0" VerticalAlignment="Stretch" FontStretch="Normal" FontSize="14" FontFamily="Lucida Sans Unicode" Grid.ColumnSpan="3">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <Image Width="20" Margin="3" Source="{Binding XPath=enclosure/@url}" />
                        <TextBlock Margin="3" VerticalAlignment="Center" Text="{Binding XPath=title}" FontWeight="Bold" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

        <StackPanel Grid.Row="1" Orientation="Vertical" DataContext="{Binding ElementName=lstItems, Path=SelectedItem}" Margin="0,0,0,5" Grid.ColumnSpan="3">
            <TextBlock Margin="3" FontSize="13" FontWeight="Bold" Text="{Binding XPath=title, Path=InnerText}" />
            <TextBlock Margin="3" Opacity="0.72" Text="{Binding XPath=pubDate}" />
        </StackPanel>
        <ScrollViewer CanContentScroll="True" Grid.Row="2" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto"  DataContext="{Binding ElementName=lstItems, Path=SelectedItem}" Margin="0,0,3,115" Grid.RowSpan="2" Grid.ColumnSpan="3">
            <TextBlock  Margin="3"
                       FontStyle="Italic" Text="{Binding XPath=description, Path=InnerText}" TextWrapping="Wrap" TextAlignment="Justify" AllowDrop="False"
                       Foreground="#FF0000E7" FontFamily="Lucida Sans Unicode" FontSize="14" Padding="0,0,5,0" VerticalAlignment="Center" />
        </ScrollViewer>

    </Grid>
</UserControl>

您可能需要检查包含数据的xml文档是否仍被以前的应用程序锁定

因此,启动应用程序。关上它


另外,:添加异常处理,以便知道抛出的异常。至少使用

来源是从互联网网站读取的,它是rss阅读器。当可能在运行时加载异常时,如何进行异常处理。我在工具箱中使用了WPF元素主机控件,并设置为加载某些用户控件。我指的是在WPF应用程序中测试它。问题是我对WPF不熟悉,这就是为什么可能会发生这种情况,我可能忘记了处理某些东西。你能试着运行我的代码吗?你可以放一些你想要的rss链接,它可能会在我使用的
http://wpfwonderland.wordpress.com/feed/
作为rss源,每次都可以使用。你能用这个url测试吗?嗯,它每次都正常启动