在VS2008.Net下使用WPF开发Web应用程序
2020-11-16 14:28
标签:blog http 使用 os io art 原文地址:http://hankjin.blog.163.com/blog/static/33731937200922353623434/ 胖客户端的好处是可以轻易的实现绚丽的效果, 而瘦客户端则需要大量的js才能实现相应的效果. private void
在VS2008.Net下使用WPF开发Web应用程序,搜素材,soscw.com 在VS2008.Net下使用WPF开发Web应用程序 标签:blog http 使用 os io art 原文地址:http://www.cnblogs.com/CocoWang/p/3700149.html
而且当需要同时开发应用程序和Web应用程序时,
则需要将近双倍的开发时间.
但是,在VS2008.Net下使用WPF技术, 则不但可以轻松地在Web上实现应用程序的效果,
而且可以很简单的将应用程序转换成Web应用程序.
1. 新建->项目->WPF Web Application
2.
修改Page1.xaml
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1">
3. 修改Page1.xaml.cs
public partial class
Page1 : Page
{
public Page1()
{
InitializeComponent();
}
btnWelcome_Click(object sender, RoutedEventArgs e)
{
lblWelcome.Content = "Welcome " + tbName.Text;
}
}
3.
Build->Publish
注意,
只能使用IE浏览器.
上一篇:Node.js
文章标题:在VS2008.Net下使用WPF开发Web应用程序
文章链接:http://soscw.com/index.php/essay/21661.html