在 Silverlight 中管理动态内容交付,第 1 部分
2009-02-05 11:54:37 来源:WEB开发网图 1 返回 XAML 的 HTTP 处理程序
<%@ WebHandler Language="C#" Class="XamlGenHandler" %>
using System;
using System.Web;
public class XamlGenHandler : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
// Prevent caching of the response
context.Response.Expires = -1;
// Set the type of data we're returning
context.Response.ContentType = "text/xaml";
// Create some XAML and return it down the wire
context.Response.Write("<Canvas xmlns=
'http://schemas.microsoft.com/client/2007' " +
"xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>" +
"<TextBlock Foreground='black' Padding='10' FontSize='20'>
<Run>XAML content</Run><LineBreak/>" +
"<Run>[generated " + DateTime.Now.ToLongTimeString() + "]</Run>" +
"</TextBlock></Canvas>");
}
public bool IsReusable
{
get {return true;}
}
}
Tags:Silverlight 管理 动态
编辑录入:爽爽 [复制链接] [打 印]- ››动态的改变IFrame的高度
- ››动态4种方法加载JS脚本
- ››silverlight全屏显示图片
- ››Silverlight MVVM 模式(一) 切近实战
- ››管理/var/spool/clientmqueue/下的大文件
- ››Silverlight for Windows Phone 7开发系列(1):...
- ››Silverlight for Windows Phone 7开发系列(2):...
- ››Silverlight for Windows Phone 7开发系列(3):...
- ››Silverlight for Windows Phone 7开发系列(4):...
- ››动态调用对象事件
- ››动态创建控件支持事件响应并可保存与读取
- ››Silverlight for Symbian
更多精彩
赞助商链接