• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            隨筆 - 55  文章 - 15  trackbacks - 0
            <2013年1月>
            303112345
            6789101112
            13141516171819
            20212223242526
            272829303112
            3456789

            常用鏈接

            留言簿

            隨筆分類

            隨筆檔案

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜


            31 Days of Windows 8 -- Live Tiles:http://www.jeffblankenburg.com/2012/11/09/31-days-of-windows-8-day-9-live-tiles/
            MSDN--創建瓷貼和鎖屏 : http://msdn.microsoft.com/library/windows/apps/Hh465377

            創建瓷貼的步驟:

             1. 命名空間:
             
            using namespace Windows::UI::Notifications;
            using namespace Windows::Data::Xml::Dom;

            2. 選取模板   http://msdn.microsoft.com/zh-CN/library/windows/apps/xaml/windows.ui.notifications.tiletemplatetype
            3. 設置模板中的屬性,最好將WideTile和SquareTile合并在一起,這樣不論你的Tile是哪種形態都有動態效果。
            4. 更新Tile

            下面是一個完整步驟: 
             1using namespace Windows::UI::Notifications; // Notification命名空間
             2using namespace Windows::Data::Xml::Dom; // DOM標準函數命名空間
             3namespace WFC = Windows::Foundation::Collections;
             4
             5XmlDocument^ tileXml = TileUpdateManager::GetTemplateContent(TileTemplateType::TileWideImageAndText01);//獲得模板
             6
             7XmlNodeList^ tileTextAttributes = tileXml->GetElementsByTagName("text");
             8tileTextAttributes->Item(0)->InnerText = "Hello World! My very own tile notification";//設置text屬性
             9
            10XmlNodeList^ tileImageAttributes = tileXml->GetElementsByTagName("image");
            11static_cast<XmlElement^>(tileImageAttributes->Item(0))->SetAttribute("src""ms-appx:///images/redWide.png");  //此處如果要使用Assets中的圖片的話,直接用SetAttribute("src","Tile.png");                      
            12static_cast<XmlElement^>(tileImageAttributes->Item(0))->SetAttribute("alt""red graphic");// 設置image屬性
            13
            14XmlDocument^ squareTileXml = TileUpdateManager::GetTemplateContent(TileTemplateType::TileSquareText04); //獲得方形模板
            15XmlNodeList^ squareTileTextAttributes = squareTileXml->GetElementsByTagName("text");
            16squareTileTextAttributes->Item(0)->AppendChild(squareTileXml->CreateTextNode("Hello World! My very own tile notification"));//設置text屬性
            17IXmlNode^ node = tileXml->ImportNode(squareTileXml->GetElementsByTagName("binding")->GetAt(0), true);
            18tileXml->GetElementsByTagName("visual")->Item(0)->AppendChild(node);//將方形模板插入Wide模板
            19
            20TileNotification^ tileNotification = ref new TileNotification(tileXml);
            21
            22int seconds = 10;
            23auto cal = ref new Windows::Globalization::Calendar();
            24cal->AddSeconds(seconds);    
            25tileNotification->ExpirationTime = cal->GetDateTime();//設置消失時間
            26
            27TileUpdateManager::CreateTileUpdaterForApplication()->Update(tileNotification); //顯示Tile
            28
            29

            也可以使用XML文件設置屬性:
             1    // create a string with the tile template xml
             2    auto tileXmlString = "<tile>"
             3        + "<visual>"
             4        + "<binding template='TileWideText03'>"
             5        + "<text id='1'>Hello World! My very own tile notification</text>"
             6        + "</binding>"
             7        + "<binding template='TileSquareText04'>"
             8        + "<text id='1'>Hello World! My very own tile notification</text>"
             9        + "</binding>"
            10        + "</visual>"
            11        + "</tile>";
            12
            13    // create a DOM
            14    auto tileDOM = ref new Windows::Data::Xml::Dom::XmlDocument();
            15
            16    // load the xml string into the DOM, catching any invalid xml characters 
            17    tileDOM->LoadXml(tileXmlString);
            18
            19    // create a tile notification
            20    auto tile = ref new TileNotification(tileDOM);
            21
            22    // Send the notification to the app's application tile
            23    TileUpdateManager::CreateTileUpdaterForApplication()->Update(tile);
            24
            25    OutputTextBlock->Text = tileDOM->GetXml();

            清理瓷貼
                TileUpdateManager::CreateTileUpdaterForApplication()->Clear();

            使用瓷貼隊列
                一個應用程序中最多能使用5個瓷貼,如果開啟了瓷貼隊列,會按照先后順序放入隊列中。之后TileNotification的顯示時間和顯示順序將不受程序控制,這時的控制權是在系統手中的。
                為了便于控制瓷貼的顯示,我們一般給瓷貼一個Tag用于辨識,當新的瓷貼的Tag與舊瓷貼的Tag相同時,舊瓷貼被新瓷貼代替。如果不同,隊列頭上的瓷貼被踢出隊列。
                最近的瓷貼總是被立即顯示。另外,當隊列中已經有了5個瓷貼的時候,其中一個使用了Expirate,那么當這個瓷貼消失之后,將不再在隊列中,也不會再顯示它了。
                使用瓷貼隊列的方法是:
                 TileUpdateManager::CreateTileUpdaterForApplication()->EnableNotificationQueue(true);
                禁止瓷貼隊列的方法:
                 TileUpdateManager::CreateTileUpdaterForApplication()->EnableNotificationQueue(false);

            瓷貼的圖片問題
                  用于Tile的圖片不能大于200K,像素不能大于1024*1024,但是我們的Tile最大是310*150,所以我們在使用圖片的時候要考慮到大小問題。
            posted on 2013-01-03 14:31 Dino-Tech 閱讀(1461) 評論(1)  編輯 收藏 引用 所屬分類: Windows 8

            FeedBack:
            # re: Dino Windows 8 學習筆記(十二) - 動態瓷貼 2013-01-04 00:46 custom research papers
            Very ncie good spot s oncie great!  回復  更多評論
              
            亚洲AV日韩精品久久久久| 成人综合久久精品色婷婷| 国内精品久久久久久野外| 亚洲乱亚洲乱淫久久| 亚州日韩精品专区久久久| 无码人妻精品一区二区三区久久| 久久ZYZ资源站无码中文动漫| 久久国产香蕉一区精品| 久久伊人五月丁香狠狠色| 一本伊大人香蕉久久网手机| 亚洲精品美女久久777777| 国产精品伦理久久久久久| 日本欧美久久久久免费播放网| 国产精久久一区二区三区| 久久夜色精品国产噜噜亚洲AV| 久久久久国产一区二区三区| 99国产欧美精品久久久蜜芽| 中文字幕成人精品久久不卡 | 丁香狠狠色婷婷久久综合| 久久久99精品成人片中文字幕| 久久精品人人做人人妻人人玩| 伊人精品久久久久7777| 久久er国产精品免费观看8| 国产激情久久久久影院老熟女| 伊人久久精品无码av一区| 亚洲精品99久久久久中文字幕| 99久久无码一区人妻| 色成年激情久久综合| 精品久久久久久| 久久久无码精品亚洲日韩蜜臀浪潮 | 久久久久久A亚洲欧洲AV冫| 91精品国产91久久久久久蜜臀| 国产午夜免费高清久久影院| 久久偷看各类wc女厕嘘嘘| 麻豆成人久久精品二区三区免费| 中文字幕精品无码久久久久久3D日动漫| 国内精品久久久久久麻豆| 久久久久成人精品无码| 亚洲综合久久夜AV | 亚洲中文久久精品无码| 青草国产精品久久久久久|