WEB开发网
开发学院图形图像Flash 在 Silverlight 中管理动态内容交付,第 1 部分 阅读

在 Silverlight 中管理动态内容交付,第 1 部分

 2009-02-05 11:54:37 来源:WEB开发网   
核心提示: 图 1 返回 XAML 的 HTTP 处理程序 <%@ WebHandler Language="C#" Class="XamlGenHandler" %>using System;using System.Web;public clas

在 Silverlight 中管理动态内容交付,第 1 部分图 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;}
  }
}

上一页  1 2 3 4 5 6 7 8  下一页

Tags:Silverlight 管理 动态

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接