Windows Phone 7 點陣圖程式設計
Image控制元件的寫法
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image Name="img" />
</Grid>
通過System.Windows.Controls.Control.ManipulationStarted事件來進行呼叫這這個方法覆蓋了System.Windows.UIElement.OnManipulationStarted(System.Windows.Input.ManipulationStartedEventArgs)。
載入網路的圖片資源
protected override void OnManipulationStarted(ManipulationStartedEventArgs args)
{
Uri uri = new Uri("http://www.website.com/image/a.jpg");
BitmapImage bmp = new BitmapImage(uri);
img.Source = bmp;
args.Complete();
args.Handled = true;
base.OnManipulationStarted(args);
}
載入本地的圖片資源
protected override void OnManipulationStarted(ManipulationStartedEventArgs args)
{
Uri uri = new Uri("../Images/Hello.png", UriKind.Relative);
StreamResourceInfo resourceInfo = Application.GetResourceStream(uri);
BitmapImage bmp = new BitmapImage();
bmp.SetSource(resourceInfo.Stream);
img.Source = bmp;
args.Complete();
args.Handled = true;
base.OnManipulationStarted(args);
}
窗體頂端
本文轉自linzheng 51CTO部落格,原文連結:http://blog.51cto.com/linzheng/1079238
相關文章
- 深入理解Windows Phone 8.1 UI控制元件程式設計WindowsUI控制元件程式設計
- 7-Windows程式設計 -滑鼠Windows程式設計
- Java-GUI程式設計之處理點陣圖JavaGUI程式設計
- Windows程式設計系列:圖形程式設計基礎Windows程式設計
- UITableView佔點陣圖的低耦合性設計UIView
- C語言程式設計-漢字點陣C語言程式設計
- 5-Windows程式設計 -繪圖基礎Windows程式設計繪圖
- 這7點陣圖靈獎得主,竟然今日才入選ACM Fellow,他們可是程式設計師“祖師爺”圖靈ACM程式設計師
- windows核心程式設計--程式Windows程式設計
- FreeType Glyph Conventions 翻譯(7)——FreeType點陣圖 Bitmaps
- 點陣圖
- Windows 程式設計簡介從C/C++到Windows程式設計Windows程式設計C++
- windows核心程式設計--windows程式的執行Windows程式設計
- Windows Phone SDK 8/8.1 官方下載Windows
- Windows核心程式設計_HookWindows程式設計Hook
- 7月程式設計心得程式設計
- 《Linux系統程式設計訓練營》7_程式建立大盤點Linux程式設計
- 線上生成佔點陣圖片工具:簡便快捷的設計利器
- windows10系統設定和使用Your Phone應用的方法Windows
- Windows核心程式設計_磁碟加密Windows程式設計加密
- Windows sdk程式設計筆記Windows程式設計筆記
- windows核心程式設計--纖程Windows程式設計
- windows核心程式設計--DLL基本Windows程式設計
- windows核心程式設計--精華Windows程式設計
- 2-Windows程式設計 -UnicodeWindows程式設計Unicode
- Java程式設計:圖Java程式設計
- 微信小程式image載入成功前顯示預設佔點陣圖微信小程式
- Redis 精確去重計數 —— 咆哮點陣圖Redis
- Windows Phone應用效能監控與分析技巧Windows
- 四. 文字程式設計--Windows程式設計課程學習筆記程式設計Windows筆記
- 《Windows核心程式設計》筆記(一)Windows程式設計筆記
- windows核心程式設計--字符集Windows程式設計
- windows核心程式設計--核心物件Windows程式設計物件
- windows核心程式設計--DLL高階Windows程式設計
- 6-Windows程式設計 -鍵盤Windows程式設計
- ClickHouse 留存、路徑、漏斗、session 點陣圖 roaringbitmap 點陣圖最佳化Session
- c程式設計--指標與陣列C程式程式設計指標陣列
- 美女程式設計師觀點:程式設計師最重要的非程式設計技巧程式設計師
- 點陣圖索引(轉載)索引