change background color of wp8 app layout - windows-phone-8

I'm interested to know, How can I change the background color through programming in WP8 App. When I navigate between the pages in my app, the background color that appears is visible at the moment of swiping pages which is either white or black(depends on theme)
Today I had downloaded Imagefusion app from the Store, where background color you see while navigating between pages is light beige, but not white/black. Do you know how can I change the background color of the app layout? Thank you.
I'm using c#, visual studio 2013.

you must be having Grid at top most layer say gridRoot
then, If you want to change its background color programmatically then use:
gridRoot.Background = new SolidColorBrush( Colors.YourColor);
As you haven't set background color to Grid, it shows default color i.e. your theme color.

http://social.msdn.microsoft.com/Forums/en-US/e0fddd42-ecb9-4a2b-b5e5-10f464cdf3e6/change-background-other-than-dark-or-light-in-app?forum=wpdevelop
Here is the easiest way that fits my expectations. I guess this method also works. Thank you very much for your help.

Related

Programmatically determine the html background color

Is there a way to determine the background color used in the html, from inside an angular component?
I am writing an angular component that's inside one of the many feature modules used where I need to know the background color used by the page, and I would like to determine dynamically the background color utilized. The webpage has multiple tabs, and this component can appear in any tab
try this:
getComputedStyle(document?.querySelector?.("body") as Element).backgroundColor

Color customization with Google forms.

Google forms is automatically altering color when I insert a custom photo banner (which does not match our brand). How and where can I enter in a specific color code (if possible)? Is there a specific format that should be used? (HTML, RGB, CMYK?)
Also, the initial box IN the email seems to be defaulting to a red/burgundy color scheme. Is this normal, and is it also able to be changed?
Thanks in advance!
Sorry, this is not possible. If you change the image banner it will change the colour too.

Theme color on Framework7

I have already looked at several more sites so far I have not been able to figure out how to make the color in the upper part of the app, where is the clock and the battery, using framework7, the same orange color in the upper right app that is in the image below. Does anyone know how to do this?
Translated from Portuguese to English - Google Translate
Are you talking about the status bar? If so, in this page you might see something relevant for you:
"In PhoneGap apps Status bar text color is always black by default. It can't be changed from Framework7, but can be customized with PhoneGap plugins like cordova-plugin-statusbar"
It has nothing to do with Framework7 my friend, it is from the OS, you can check the answers here to find the best way to do it:
How to change the status bar color in android

How to choose a color on a palette to change part of an image?

I don't even know where to begin or what codes will be needed.
I'm trying to build a website that allows the user to change a certain part of an image's color. Just like a coloring book page online, where someone can choose a color from the palette and it will allow them to click on that part of the image to change it to that color. Once they are done they can save the image to their computer.
Any help in the right direction would be incredible!
You can try to make a transparent div over a div containing the image which is in absolute position of the div containing the image.
Then you can check some javascript plugin to get a color picker plugin.
With Javascript and for example jQuery, you can add some events on click on the color picker and then on click of the div which is hover the image to apply the picked color.
I hope this is clear for you, otherwise I can make a JSfiddle

Set background color on splashscreen and tiles for Windows Store Applications

I don't want to use the default grey backgruond color for my Splashscreen and Tile backgrounds. Where can I change this in Visual Studio?
Opening the "package.appxmanifest" file in your Solution Explorer will get you there as well :)
Just realize that this is done in the menu Project / Store / Edit App Manifest, and set the "Background color".