c# - How to disable the Wide Tile for SecondaryTiles in Windows Phone 8? -


i developing application in windows phone 8. having set of tiles in home screen , these tiles can pinned secondarytiles in windows start screen.

basically using fliptiledata create secondarytile in application. per requirement, should not having wide tile option secondarytile. secondarytile must pinned small , medium tiles.

i set following properties in fliptiledata.

var secondarydata = new fliptiledata {     title = "content",     backgroundimage = //image uri,     widebackgroundimage = // image uri,     smallbackgroundimage= // image uri }; 

is possible achieve in windows phone 8. please me on ?

you can turn disable wide-tile when call shelltile.create secondary data. setting supportswidetile argument false. see msdn docs more info.

shelltile.create(     launchuri,     secondarydata,     false); 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -