我想设置我的 PhoneApplicationPage 的模板。当我尝试这段代码时:
<phone:PhoneApplicationPage.Template>
<ControlTemplate>
<Grid>
<ContentPresenter/>
</Grid>
</ControlTemplate>
</phone:PhoneApplicationPage.Template>
我收到此“xaml”错误:
4011 An error has occurred.
但是当我尝试这个时:
<phone:PhoneApplicationPage.Style>
<Style TargetType="mpc:PhoneApplicationPage">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Grid>
<TextBlock Text="Test"/>
<ContentPresenter/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</phone:PhoneApplicationPage.Style>
我没有收到任何错误,但没有任何反应。
我想知道为什么我不能将自己的模板设置为 PhoneApplicationPage。
谢谢回答。
注意:我有BaseFormPage,应该使用这个模板,其他派生的页面内容会有所不同,但是模板是一样的,都是从BaseFormPage派生的。