Visual Studio 2008 中的 WPF 事件处理程序?

发布于 2025-01-03 02:46:01 字数 86 浏览 1 评论 0原文

当我向从工具箱拖放到窗口的按钮添加事件时,属性窗口上的事件处理程序不可见。因此,我手动添加了事件(通过键入)。但是当我构建它并按 F5 后,按钮没有触发事件。

When i went to add an event to the button which i dragged and dropped from toolbox to the window, the event handler on the properties window was not visible.. because of this reason, i added the event manually (by typing). but after when i built it and pressed F5, the button was not firing the event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生死何惧 2025-01-10 02:46:01

这是一个必须有效的小例子;-)

<Window x:Class="WpfStackOverflowSpielWiese.Window8"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window8"
        Height="300"
        Width="300">
  <Grid>
    <Button Click="Button_Click" />
  </Grid>
</Window>

背后的代码

using System.Windows;

namespace WpfStackOverflowSpielWiese
{
  /// <summary>
  /// Interaction logic for Window8.xaml
  /// </summary>
  public partial class Window8 : Window
  {
    public Window8() {
      InitializeComponent();
    }

    private void Button_Click(object sender, RoutedEventArgs e) {
      // do something....
    }
  }
}

希望可以帮助你......

here is a little example that must be work ;-)

<Window x:Class="WpfStackOverflowSpielWiese.Window8"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window8"
        Height="300"
        Width="300">
  <Grid>
    <Button Click="Button_Click" />
  </Grid>
</Window>

code behind

using System.Windows;

namespace WpfStackOverflowSpielWiese
{
  /// <summary>
  /// Interaction logic for Window8.xaml
  /// </summary>
  public partial class Window8 : Window
  {
    public Window8() {
      InitializeComponent();
    }

    private void Button_Click(object sender, RoutedEventArgs e) {
      // do something....
    }
  }
}

hope that helps you...

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