Windows 8 Live Tile Icon Background Color - wpf

I am developing a WPF application. My customers want to use it on Windows 8 and it's working correctly. But they are complaining me about the background color of the app's icon on Start Screen.
So can you please show me how to change it in Visual Studio or some tricks? I found some tuts on Google to customize it but using tools and I want to make it happen in Installer or Property of project...
Thanks

Change app icon color from the App Manifest file.
Heres the app manifest portion where you can change in the image
In My case the bacground color is #464646 you can change it to any thing you want and update to the users :)
Because of this reason it is always advised by Microsoft to use Transparent Png logo and a uniform background color for app tile.

That background colot of app's icon on Windows 8 is the default behavior of Windows 8. It will display the background color of the app's icon using the "dominant" color of the app's icon. If your icon has dominant color of brown, it will display brown background.
This is also the similar default behavior when hovering mouse on running application's icons on Windows 7's taskbar. To enhance the look, try change the application icon to use neutral colors or light colors instead of dark colors.
Or you can change the icon of your app to use single color's icon (such as white) on transparent background to reflect the flat theme icons of Windows Store apps in Windows 8, or use full rectangle icons as those games in Windows 8.
Example:

There is a similar question and answer: UWP Tile Background Color Not Working by Kasper, but is not specific to Windows 8, for anyone looking for a UWP solution.
As the answer by Anobik states, set the colour in the app manifest page. However, as it was found by Kasper, the value must be set in HEX for it to work as expected.

Related

WPF project Taskmanger icon

I have a WPF project. when I run it, the icon appers in the Taskbar and in the app. But in the Taskmanger windows app it's blank, how can I change that?
I have the "icon" property set on the window. And also the projects properties has the icon as its icon.
And also the icon on "programs and features" looks strange
Looks like your ico file has not enough resolutions. Edit it with some graphic software like Free Icon Editor
Take a look at Icons Guidlines
For Classic Mode, the full set is 16x16, 24x24, 32x32, 48x48 and 64x64. (but better have some more resolutions up to 256x256)
Here is screenshot of IcoFX editor with opened icon that has multiple resolutions inside

Textbox and Combo box not showing background color from theme

I have a project in the play store created with version 3.2 at end of October. Today I rebuilt the project to add new features. When I deployed it to Android I noticed the following 4 issues.
1. The push notification icon is a solid white square. It was my icon in the past.
2. The initial screen form is incorrect as it goes into the android soft buttons at the bottom of the page.
3. The theme for my combo box is not showing. Just see thru to background.
4. The text field background is also just using the background instead of the white.
I tried building in latest, 3.2 and 3.1 with no differences. I reverted all code to the release in October with no help.
I submitted the IOS build and everything is fine.
The simulator shows everything is fine.
I tried many times to figure out why this is happening and have not been able to.
I need 10 reputation points to post more than 2 links so, I'm only showing 2 screen shots. Let me know if you want the others.
Please see the following:
This image shows the edit and dropdown issue
This is the current play store version of the edit and dropdown
Any ideas on how can I fix these issues? For the text field I use my own style (it does get the boarder but not the background). The notification icon, I don't see how anything I can do would affect this.
Thank you
Sam
-- Edited --
I did manage to get these working again.
I was setting the background color using the theme background tab and setting a gradient with upper and lower the same color. I changed this to NONE, then in the color tab set the background color.
Notification needed a new icon as specified by Chen. In my case the app icon is basically a square and doesn't transfer well to a notification icon.
The last was the nexus 9 initial screen painting into the bottom navigation control. This is still happening and is easily reproduced by making a new hello world codename one app with no changes.
Are you using the android.asyncPaint=false build hint?
I understand some issues occurred with it although I doubt you would see them if you are using the versioned build.
Setting the background color using the theme background tab and setting a gradient with upper and lower the same color didn't work.
Change this to NONE, then in the color tab set the background color.

WPF popup title bar coming alway in white background in Windows 10

Anyone have any idea how to change the messagebox title bar color to the default in windows 10 (looking for the default like in windows 8 or older). At present it is coming as white.
I am also searching for a solution. But I'm afraid that at the moment only UWP supports this feature. Not WPF.
What you could do is hiding the tilte bar and making a custom one.
Similar answer: https://stackoverflow.com/a/9978757/3319147

Windows Phone gray transition frame

I have a problem with gray transition frames in Windows Phone 7.
I am using Silverlight for Windows Phone toolkit and transitions are working fine except for the color. Suddenly, the color of the transitioning frame became gray. For the purposes of my app, I am overriding the app resources, like this:
(App.Current.Resources["PhoneBackgroundBrush"] as SolidColorBrush).Color = Colors.White;
(App.Current.Resources["PhoneForegroundBrush"] as SolidColorBrush).Color = Colors.Black;
When I don't do that, the transition frame is black if the theme on the phone is dark, and it's white if the theme on the phone is white. As it should be.
As soon as I set the resources (background and foreground brush), the transition frame becomes gray if the theme on the phone is dark, and white if the theme on the phone is white.
Any guesses what on Earth is going on?
Thanks
OK, I have found what caused this, and it's the most unusual thing. I wasted 4 hours and then realized what was the thing I changed compared to the last version of my app.
I realized that I added the AdDuplex ad control. I have no idea how and why this influences the color of the transition page, but whenever I debug my app using trial mode and display the ad control, the transition page becomes gray. When I am not in trial but "paid" mode, the ad is not visible and the transition page is white.
Removing the AdDuplex control helps. (not such a great solution)

how to change the wpf window's icon size?

I would like to change the size of the window's icon in the xaml window.
I know that I can hide the window's title bar and create a custom title bar, but is there
any way to change the icon size alone ?
I was looking for many forums and couldnt find a proper solution.
How do I change WPF Menu's icon column size?
The above link explains for menu's icon size but I want for the window's icon
The standard window chrome is handled by the Windows.
I guess the reason for that is consistency across applications which is also the reason why I dislike the Office/Ribbon replacement of the standard chrome.
In Windows 8 Metro applications there will be no window chrome so all UI will be up to you.
In Windows 8 desktop applications (and Windows 7 applications) you will need to replace the entire chrome completely.
To save yourself some coding time, check out this solution over at CodePlex:
http://wpfwindow.codeplex.com/

Resources