background preloader

Win phone

Facebook Twitter

PhoneApplicationPage Navigation. Windows Phone开发(12):认识一下独具个性的磁贴 - tcjiaan的专栏. 对“磁贴”的理解是一点也不抽象的,为什么呢? 只要你愿意启动WP系统,无论你是在模拟器中还是在真机中,是的,桌面上那一块块像地板的玩意儿,就是磁贴了。 (图:磁贴) 在上图中,我们很直观地看到磁贴图块的“真”面目,呵呵,其实很明显,这个设计真的很有个性,老实说,WP刚推出的时候,很多人说它这个那个的,其实这些人只过是起起哄罢了。 Windows Phone 7.5 動態磚. 目前微軟的芒果大舉入侵,各家廠商也入續跟進,aser與nokia也加入此戰局,另htc早就在去年就投入第一支Windows phone 7手機。 下面就是Windows Phone 的正面動態磚,其中Count數字,可以累加,如同可以計數來電的數目,backgrounf image照翻譯就是背景圖,可以更改圖示,title只的是標題,讓使用者知道是什麼app。 下面就是Mango的背面動態磚,如同上面一樣,也有三個項目 。 下表為與動塊磚相關的library為ShellTile,表中Create(頁面連結與磚塊資訊),Update(磚塊資訊),ActiveTile(傳回所有動態磚) 。 透過Linq的語法,來更改動塊磚顯示,如下所示 : //建立方塊磚資料 var ret = from c in ShellTile.ActiveTiles where c.NavigationUri.ToString().Contains("TileID=" + this.textBox1.Text) select c; if (ret.Count() > 0) { MessageBox.Show("已經有同參數的方塊磚"); return; } StandardTileData NewTileData = new StandardTileData { BackgroundImage = new Uri("/Images/People.png", UriKind.Relative), Title = "方塊磚", Count = int.Parse(textBox2.Text), BackTitle = "參數是" + this.textBox1.Text, BackContent = "方塊磚的背面", BackBackgroundImage = new Uri("/Images/PeopleSay.png", UriKind.Relative) }; //用NewTileData建立新的方塊磚,連結URL為/MainPage.xaml?

Access to Windows Phone 7 Camera Roll from a Silverlight App … - Learn. Teach. Share. Or “Why is my RootPictureAlbum null?” Download the code for this example. The fist thing to do is create a blank Windows Phone 7 application. Add a reference to the Microsoft.Xna.Framework assembly to that application. Silverlight 2 - Saving and Retrieving Images from IsolatedStorage. Silverlight 2 - Saving and Retrieving Images from IsolatedStorage In one of my previous article, Display Images From Database In Silverlight 2, we explored how to pull images from the database using Silverlight.

Silverlight 2 - Saving and Retrieving Images from IsolatedStorage

However, that approach was slow as the database was hit every time the user requested an Employee Image. In this article, we will see another approach where we will use the IsolatedStorage to store and retrieve images. Once the images have been fetched from the database and stored in the IsolatedStorage, all subsequent requests can then be routed to the IsolatedStorage, which makes responses super fast, as the images are now being fetched from the local disk of your machine. If you are new to IsolatedStorage, read more about its advantages over here.

We will first create an Image Handler that will fetch images from the database for the first request. We will make use of the Employees table in the Northwind database. <UserControl x:Class="ImagesInIsolatedStorage.Page" xmlns=" else get. [Silverlight] 當麻許的Phone7筆記 - 9.應用程式選單(ApplicationBar) [使用Expression Blend] - 當麻許. 因為上次問我的人,他是設計人員所以她是用 Expression Blend 她一直問我說到底那Control 在哪邊?!

[Silverlight] 當麻許的Phone7筆記 - 9.應用程式選單(ApplicationBar) [使用Expression Blend] - 當麻許

雖然最後我是在Visual Studio 下面做給她,但是事後我還是找出來在Blend 下面要怎麼生出來… 這可以節省空間如果當您的App有很多功能是需要被觸發但是又不想顯示在內容裡面的時候。 所以才這樣翻譯成 應用程式選單 如何在Blend 中製作呢?! 首先開啟一個專案 之後左側 Objects and Timeline 的視窗中 對於 PhoneApplicaitonPage物件中按下滑鼠右鍵選擇 Add ApplicationBar 之後就可以對Application Bar 物件 按下滑鼠右鍵選擇 Add ApplicationBarIconButton 之後就會多一個ApplicationBarIconButton,之後就可以在物件的Properties 中找到 IconUri的屬性並且可以選擇許多預設的Icon 並且可以改變 Text 屬性改變按鈕下面的字 我放入兩個按鈕效果如下(右圖為展開): 如果是加入 上圖 “關於程式”那效果,就是要加入 ApplicationBarMenuItem 增加完之後: 當然也可以去更改他的Property Text 為 關於程式. PanoramaItem Class (Microsoft.Phone.Controls) Windows Phone 实用开发技巧(10):Windows Phone 中处理图片的技巧 - Alexis. Windows Phone Icons Maker. 市集搜尋結果. 使用application bar出错 - 微软开发者 - Windows Phone 7论坛. [WP7開發] 美化 Panorama 控制項的標頭 - 開發者之魂. Windows Phone 7 中有一個很獨特的控制項--Panorama(全景),它在手機上的效果就像是這樣: 這是一個示意圖,手機畫面畫面一次會顯示一個區塊的內容,而使用者只需左拉右滑就可以看完全部的內容。

[WP7開發] 美化 Panorama 控制項的標頭 - 開發者之魂

而在 Windows Phone SDK 中也提供了 Panorama 的專案範本,讓開發人員可以直接使用這個控制項來開發應用程式,但這個控制項原本是為英文字型設計的,所以如果直接修改成中文字,可能就會變成這樣: 你可以看到標題的中文字實在是太大了,而且還被 clip 掉一部份,有時候可能會造成閱讀的麻煩,這個時候只要使用 TitleTemplate 的方式就可以改變 Panorama 控制項的標題: Nokia Developer - 你的灵感,我们的工具。 WP7 修練 DAY 08:整合 Nokia Maps 進 Bing Map 控制項. 我這次的研究基礎來自於 當麻許 寫的【[Silverlight] Phone 7中BingMap Control 使用中文台灣地圖(僅供研究教學用)】這篇文章,非常感謝他有這篇分享,讓我對 Nokia Maps 的整合有了一線生機。

WP7 修練 DAY 08:整合 Nokia Maps 進 Bing Map 控制項

研究過程分享. 短信、邮件、通讯录 - Windows Phone开发论坛-DEVDIV.COM. Windows Phone Development. Windows Phone 7.5 (Mango) 線上教學資源 - 開發者之魂. 如何在 Windows Phone 应用程序中使用相机对焦. Windows Phone 7.5 (Mango) 開發學習資源整理. Windows Phone 7 菜鳥開發手記 - .Net 海角點部落. Finally, Face Detection for Windows Phone! I wrote a port of OpenCV’s face detection library in C# for the Windows Phone. If you just want the link to the library and don’t want to hear my story, it’s If you’re curious, read on: For the final project of my computational photography class, I developed an app that helps people take pictures of themselves (this was actually a fleshing out of an earlier prototype I’d written while an intern at Microsoft). The app is currently in beta testing and I hope to releas it on the Marketplace before the new year!