我有一个应用程序,并在我的Windows1应用程序的page1中创建了一个RichTextBox。 UI在设计框中显示我想要的方式但是当我尝试运行应用程序时,我收到错误“在PhoneApp1.Page1'上找不到”EventHandler'PhoneApplicationPage_Loaded'“
我根本不明白发生了什么,我想也许我想在编码cs部分处理richtextbox的实际显示,我处理按钮点击进入该页面。当我在网上看时,我看到的是如何使用richtextbox就像我在我的xaml文件上所做的那样。任何想法该错误意味着什么?
以下是我的xaml和cs文件中的代码:
namespace PhoneApp1
{
public partial class Page1 : PhoneApplicationPage
{
public Page1()
{
InitializeComponent();
}
}
}
和cs对应的xaml是:
Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<RichTextBox VerticalAlignment="Top">
<Paragraph>
<Bold FontSize="32">Great Stuff</Bold>
</Paragraph>
<Paragraph>
Great Stuff
<LineBreak></LineBreak>
</Paragraph>
<Paragraph>
<Bold FontSize="32">More Stuff</Bold>
</Paragraph>
<Paragraph>
More Stuff
<LineBreak></LineBreak>
</Paragraph>
<Paragraph>
<Bold FontSize="32">Some Stuff</Bold>
</Paragraph>
<Paragraph>
Some Stuff
</Paragraph>
</RichTextBox>
</Grid>
答案 0 :(得分:0)
您的代码没有问题。
搜索您的解决方案,是否存在“PhoneApplicationPage_Loaded”事件?