Change SystemTray Progress Indicator Color - windows-phone-7

i need change color of SystemTray.ProgressIndicator color, how i can do it?
I tried setting ForegroundColor for SystemTray, it works for only text not Inicator. Indicator always uses PhoneAccent color.

According to Jamie Rodregez this is not possible. Could you use the normal ProgressBar or PerformanceProgressBar and style it so it was at the top of the page like the progress indicator?

Related

How to change Chart background color in PhpPresentation?

I know how to change background color in slide,
but i can't find how to change background color in chart.
Default Chart
I use a default code from PhpPresentation
Any one can help?
finally i found the answer!
just use this code :
$shape->getFill()->setFillType(Fill::FILL_GRADIENT_LINEAR)
->setRotation(90)
->setStartColor(new Color('FF000000'))
->setEndColor(new Color('FFB1B1B1'));
Below this code
$shape->setFill($oFill);

Set secondary color of all views

image of an Editor
Like shown in the image above my secondary color for all my views is pink.
But I want it to be a different one.
Where can I set the Color globally?
For the Entries that pink color is the color accent of the application
Which can be modified of course. example
But if you want a little more customization for this view and maybe others. You will have to use custom renderers. Here is another question about that

xamarin three-choice button color

I am using the Three-choice Button component in xamarin, but I don't know of a way to change the button color. The font and shadow ect can be changed, but I would like to change the grey color.
Can anyone provide some insight on how to do this?
I solved this a different way. I am using a normal ios switch, and just changing the background colour of the switch, ie Green, Grey or Orange.
Not exactly the answer to my question, but looks neater than the component did.

iOS 7 BarTintColor

Have any one else noticed in iOS7, the translucent navigation bar only shows color underneath if barTintColor is set to default?
I tried setting barTintColor to various different colors, but anything that is below the navigation bar is displayed a a black blur. Whereas if the barTintColor is set to default, all the elements display correctly underneath.
Is there a way to force it to show the correct colors?
You have to use background color instead of tint color.
self.navigationController.navigationBar.backgroundColor = [UIColor yellowColor];
If you are using tint color it changes only barbutton background color change.
In MyTabBarController in the storyboard select the color tint. You will change the button active color background. No idea for the inactive one.

LongListSelector Foreground Color

Have been searching through here with no luck, Pretty simple problem, On my emulator all font colors are white (which is what I want).
Testing on a device the fonts are all black now, I have managed to change this by setting the foreground colors on the elements however I am unable to do so on the longlistselector through code.
This works for me:
longListSelector.Background = new SolidColorBrush(Colors.Transparent);
However this has no effect:
longListSelector.Foreground = new SolidColorBrush(Colors.White);
Any other way I can attempt to set the text color on the longlistselector?
The reason foreground colors would be different would be because of the default style. PhoneAccentBrush changes based on if your "phone" is set to have a white background or a black one.
The reason why your longListSelector.Foreground is not working may be because the phoneaccentbrush is set on the items inside the longlistselector from a style?

Resources