- Windows Embedded CE 6.0 R3的RTM(發佈給生產廠商)版 資料來源:http://www.eettaiwan.com/ART_8800585225_676964_NP_d95e076c.HTM
- Windows Mobile 7 資料來源:http://www.fiercemobilecontent.com/story/microsoft-confirms-silverlight-windows-mobile-7/2009-09-25
- XBox 360 資料來源:http://stevesmithblog.com/blog/silverlight-3-on-xbox-360/
- Moblin 資料來源:http://blogs.zdnet.com/BTL/?p=24822
2009年9月29日
Support Silverlight System
即將支援 Silverlight 的系統如下:
2009年9月3日
TransformToVisual
使用 UIElement.TransformToVisual 時,常常會把角色給搞混,為了一勞永逸,乾脆好好記錄下來,並用圖形來表示。
以下是將 EllipseObject 由 OriginalCanvas 轉換到 TargetCanvas,並保持不動的程式碼。
以下是將 EllipseObject 由 OriginalCanvas 轉換到 TargetCanvas,並保持不動的程式碼。
Point PointOfOriginal = new Point(Canvas.GetLeft(EllipseObject), Canvas.GetTop(EllipseObject)); GeneralTransform generalTransform = OriginalCanvas.TransformToVisual(TargetCanvas); OriginalCanvas.Children.Remove(EllipseObject); Point PointOfTarget = generalTransform.Transform(PointOfOriginal); Canvas.SetLeft(EllipseObject, PointOfTarget.X); Canvas.SetTop(EllipseObject, PointOfTarget.Y); TargetCanvas.Children.Add(EllipseObject);

訂閱:
文章 (Atom)
Deploying Vue & .NET with Google OAuth on GCP Cloud Run
Deploying Vue & .NET with Google OAuth on GCP Cloud Run Deploying Vue & .NET with Google OAuth on GCP Cloud Run...
-
有幾個正正當當的 SEO 規則: 讓 Google 與 Yahoo 知道這個網站或網頁的存在:Google 可以透過網站管理工具,Yahoo 則透過 siteexplorer。 找出與網站相關的熱門關鍵字:既然想透過 Google 或 Yahoo 的關鍵字搜尋,當然不要選...
-
使用 WPF 建立雙螢幕或多螢幕畫面,作法如下: 首先刪除 App.xaml 中的 StartupUri="MainWindows.xaml"的設定。 加入 System.Windows.Forms (for Screen) 與 System.Drawi...
-
由於 Silverlight 並沒有中文字型,所以要顯示中文字便比較麻煩。 如果文字的內容是固定,可以用圖形或將文字轉成 path 的方式處理, 若文字是變動性的,甚至是由 user 來輸入, 就必須建立 WCF 由 server 端來處理了。 以下是 Server 端, 將 ...