银光应用程序;如何将代码添加到按钮事件处理程序?

发布于 2024-11-29 04:31:22 字数 466 浏览 1 评论 0原文

我正在关注 本教程 (Hello World Silverlight 应用程序初学者)

在此步骤中,它展示了如何将代码添加到按钮的事件处理程序中,

http:// silverlight1blogpost.s3.amazonaws.com/step15.png

这是在 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,

http://silverlight1blogpost.s3.amazonaws.com/step15.png

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深如许 2024-12-06 04:31:22

首先,自 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'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文