银光应用程序;如何将代码添加到按钮事件处理程序?
我正在关注 本教程 (Hello World Silverlight 应用程序初学者)
在此步骤中,它展示了如何将代码添加到按钮的事件处理程序中,
这是在 xaml.cs 文件中完成的,但我在任何地方都找不到它, 谁能告诉我在哪里可以向按钮的事件处理程序添加代码 在 Visual Studio 2010 中
I'm following this tutorial
(beginner Hello World Silverlight Application)
In this step it shows how to add code to the event handler of a button,
this is done in a xaml.cs file but i cant find it anywhere,
can anybody tell me where I can add code to the event handler of my button
in Visual Studio 2010
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,自 Silverlight 2 以来,使用新的 Silverlight 项目自动创建的控件的名称似乎已更改(如您正在关注的教程中所示)。新的 Silverlight 4 项目具有 MainPage.xaml(和 MainPage.xaml.cs),而不是 Page.xaml 和 Page.xaml.cs。
要访问 MainPage.xaml.cs(这是放置事件处理程序的位置),请在解决方案资源管理器中展开 MainPage.xaml 节点。这应该在 MainPage.xaml 下显示 MainPage.xaml.cs。或者,右键单击 MainPage.xaml 中的
Click="MyButton_Click"
并选择“导航到事件处理程序”。Firstly, it seems the name of the control created automatically with a new Silverlight project has changed since Silverlight 2 (as in the tutorial you're following). A new Silverlight 4 project has MainPage.xaml (and MainPage.xaml.cs) instead of Page.xaml and Page.xaml.cs.
To access MainPage.xaml.cs (which is where you'd put the event handler), expand the MainPage.xaml node in Solution Explorer. This should should show MainPage.xaml.cs under MainPage.xaml. Alternatively, right-click
Click="MyButton_Click"
in MainPage.xaml and choose 'Navigate to Event Handler'.