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
{
}
}
返信ありがとう。