将ASPX转换为XAML

时间:2018-03-05 07:07:06

标签: c# asp.net wpf xaml

如何将.aspx文件写入WPF的.xaml文件?

我怎么写或转换?有没有可以转换的工具?

2 个答案:

答案 0 :(得分:0)

即使两者都是XML,它们也是不同的。你不能真正比较它们既不转换。

答案 1 :(得分:0)

WinForms和WPF是不同的UI平台。您不能直接将WinForms应用程序转换为WPF,因为控件,属性和方法在类,命名空间和语法方面是不同的。你有一些解决方案可以实现转换,但100%的转换是不可能的。请查看以下链接,这些链接将提供有关将WinForms应用程序转换为WPF的有用信息。

Windows Forms to Windows Presentation Foundation Converter

WinForms -> XAML

Guidance for migrating an app from Windows Forms to WPF?

Creating the Same Program in Windows Forms and WPF