0

我做了一个应该显示小消息框的小程序。

using System;
using System.Collections.Generic;
using System.Linq;    
using System.Text;    
using System.Windows;    
using System.Windows.Controls;    
using System.Windows.Data;    
using System.Windows.Documents;    
using System.Windows.Input;    
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;   
using System.Windows.Shapes; 

namespace WpfBrowserApplication1   
{  
    /// <summary>    
    /// Interaction logic for Page1.xaml   
    /// </summary>    
    public partial class Page1 : Page    
    {   
        public Page1()    
        {    
            InitializeComponent();    
        }

        private void button1_Click(object sender, RoutedEventArgs e)    
        {

            MessageBox.Show("gs");    
        }   
    }    
}

结果:

在此处输入图像描述

为什么?我怎样才能得到一个带有简单按钮的小网页,当你点击他时会显示messgebox?

4

2 回答 2

5

因为您使用的是 Opera。

WPF 浏览器应用程序仅在 IE 中受支持。

其他浏览器有一个 WPF 插件,但我知道它维护不足。

你为什么要开发 WPFBA 呢?这是死胡同。

于 2013-03-22T01:33:39.043 回答
0

WPF Browser Applications are only supported in IE sorry

于 2013-04-13T18:10:47.873 回答