我做了一个小程序,它应该显示小的MessageBox。
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");
}
}
}
结果:
为什么呢?我怎么能得到一个带有简单按钮的小网页,当你点击他时会显示信息框?
答案 0 :(得分:5)
因为你正在使用Opera。
仅在IE中支持WPF浏览器应用程序。
其他浏览器都有一个WPF插件,但我知道它的维护不足。
为什么要开发WPFBA?这是死路一条。
答案 1 :(得分:0)
仅在IE抱歉中支持WPF浏览器应用程序