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> {}
}

AppView

<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();
        }
    }
}

AppModelView

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 に答える