how can i add downloading feature in my app

Aadarsh Modi

New member
Jul 12, 2013
58
0
0
hello guys i am a developer form India ,few hours ago i completed my wp8 app,but it still lack some features like a built in downloader,orientation lock,night mode etc.Basically it is browser ,So i need help in getting those features so any body would like to join the project and help me
 
This is my code to lock the application orientation, which you may find useful.

protected override void OnNavigatedTo(NavigationEventArgs e)
{
settings = new AppSettings();

bool locked = settings.OrientationLockSetting;
bool useAccent = settings.UseThemeColorSetting;

SetOrientation(locked);
SetAccent(useAccent);
base.OnNavigatedTo(e);
}
private void SetOrientation(bool locked)
{
this.SupportedOrientations = locked ? SupportedPageOrientation.Portrait : SupportedPageOrientation.PortraitOrLandscape;
}
 

Members online

No members online now.

Forum statistics

Threads
339,371
Messages
2,262,392
Members
428,759
Latest member
fghjk67