1

我想尝试用 Caliburn.Micro 框架创建一个 WPF 应用程序,但是我遇到了一个问题。我在 Silverlight 中看到了许多教程资源,但在 WPF 上并不好。我拥有 Silverlight 教程中的所有内容,所有内容都已编译但未渲染。

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:CaliburnTest"
             x:Class="CaliburnTest.App">
    <Application.Resources>
        <local:AppBootstrapper x:Key="Bootstrapper" />
    </Application.Resources>
</Application>

引导程序

namespace CaliburnTest
{
    class AppBootstrapper : Bootstrapper<AppViewModel> {}
}

应用视图

<Window x:Class="CaliburnTest.Views.AppView"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="AppView" Height="350" Width="525">
    <Grid>

    </Grid>
</Window>
namespace CaliburnTest.Views
{
    public partial class AppView
    {
        public AppView()
        {
            InitializeComponent();
        }
    }
}

应用模型视图

using Caliburn.Micro;

    namespace CaliburnTest.ViewModels
    {
        class AppViewModel : PropertyChangedBase
        {
        }
    }

谢谢您的回复。

4

1 回答 1

0

我发现了问题。写得很糟糕 app.xaml 应用程序资源 这是 xaml 文件的正确内容

<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:CaliburnTest"
             x:Class="CaliburnTest.App">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary>
                    <local:AppBootstrapper x:Key="Bootstrapper" />
                </ResourceDictionary>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
于 2013-02-16T18:49:44.037 回答