Faves:2009/03/08:Windows Live Writer

三月 9, 2009

Windows Live Writer Writing Plugins For Windows Live Writer – Getting Started # | plugin,live writer Scott 寫的開發 WLW plugin 的簡單範例。 The New Live Writer SDK # | plugin,live writer [PublishNotificationHook] OnPrePublish , OnPostPublish [HeaderFooterSource] GeneratePreviewHtml() , GeneratePublishHtml() Technical Preview: Now Available for Download – Windows Live # | plugin,live writer 新 WLW SDK 下載。

迴響已關閉

HtmlScreenCapture – Live Writer SDK 中好用的 class

三月 8, 2009

HtmlScreenCapture 可以將 HTML 內容(或指定網址)快照成圖檔。(Provides the ability to capture HTML content into a bitmap. [#]) 要參考 C:\Program Files\Windows Live\Writer\WindowsLive.Writer.Api.dll 程式碼: using System; using System.Collections.Generic; using System.Text; using WindowsLive.Writer.Api; class Program { static void Main(string[] args) { // 從指定網址截圖 WindowsLive.Writer.Api.HtmlScreenCapture capture = new HtmlScreenCapture(new Uri("http://tw.yahoo.com"), 1024/*寬度*/); System.Drawing.Bitmap bmp = capture.CaptureHtml(5000/*timeoutMs*/); bmp.Save(@"C:\1.png", System.Drawing.Imaging.ImageFormat.Png); // 從 html 內容截圖 WindowsLive.Writer.Api.HtmlScreenCapture [...]

迴響已關閉

Faves:2009/03/06:jQuery

三月 6, 2009

jQuery Mini jQuery Lab Online – 黑暗執行緒 # | jquery,javascript,online tool Mini jQuery Lab is a handy HTML page to test simple Javascript and jQuery. It is useful when you want to verify uncertain Javascript syntax … 測試jQuery的線上工具 TIPS-依條件決定要呼叫的Javascript函數 – 黑暗執行緒 # | jquery $("#someDiv")[someCondition ? "show" : "hide"](); jQuery 樹狀勾選選單 – jquery.checktree.js – 黑暗執行緒 [...]

迴響已關閉