how can i add downloading feature in my app
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
Re: how can i add downloading feature in my app
Hmm... Can I take a look? :) I may be able to help
Re: how can i add downloading feature in my app
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;
}
Re: how can i add downloading feature in my app
Originally Posted by
interopbyt Hmm... Can I take a look? :) I may be able to help
i will send you the code file