我想尝试用 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
{
}
}
谢谢您的回复。