how can i add downloading feature in my app

Aadarsh Modi

New member
Jul 12, 2013
58
0
0
Visit site
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
 

azcruz

Active member
Jul 29, 2013
3,417
0
36
Visit site
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

Forum statistics

Threads
323,275
Messages
2,243,560
Members
428,053
Latest member
JoshRos