MessageDialog ignores RequestedTheme in windows phone universal app - xaml

In my application I set Light theme as requested theme App.Current.RequestedTheme = ApplicationTheme.Light; all the application is applying this Light theme no matter what is the current phone theme. But all MessageDialog are using Phone theme. e.g phone theme is Dark MessageDialog is applying Dark theme.
Is there any way to set MessageDialog theme?

Try to use ContentDialog for Windows Phone part of Universal app, for Windows part use Flyout or Popup

Related

Alert dialog default style in Android on appcelerator

i'm trying to edit the style of my alert dialog in android. I hate the default style, but i saw on the web there are other default style very beautiful. How can i change it? There isn't a property like iOS Titanium.UI.iPhone.AlertDialogStyle?
You can also use custom theme for dialog.

Custom Slider control in windows store 8 app

I want to edit the default style of Slider control in windows 8 app.
Need to customize the slider as per my requirement.
I want the slider like the following
I tried with the style given in this link , but it only supports windows8.1 app, but mine is windows 8 app.
Can anybody help me to edit the default style.
Thank you.
Noorul.

Change color for setBadgelabel Node Webkit

I am currently trying to make a chat desktop application using nodeJS, angularJs, and nodewebkit.
For notifying the user, in the icon in the taskbar, I used setBadgelabel().
How can I change the color of the default badge label by the function setBadgelabel()?
Thanks in advance.

How to create dynamic icon like calendar icon of ios 7?

I want to create dynamic text changing icon like the calendar app in iOS 7 is there any way to do so?
You can not do this, there is no API allowing this.
Your apps icon is in your application bundle which is readonly and therefor can not be modified.
Sorry brother ... !! There is no API for your requirement. Apple does this only for their apps. Your app icon must be bundled with your application bundle.

How to display a Windows 8 metro style tile within an app?

Windows 8 metro style app tiles are created based on pre-defined xml templates (found here).
Is there any way to hook up to Windows' rendering of the tile to allow a tile preview within an app?
In my app I would like to offer the user a subset of the tile templates listed in the above link and let the user customize the tile content. A live preview of the customized tile rendered within my app would greatly improve the user experience.
you should look into HubTile.
I don't know any free control's right now, but Telerik and Syncfusion have HubTile control
You can't get access to real Windows tile rendering, but you can simulate it since all templates are known. It is very unlikely that Microsoft would change the way tiles are rendered and even if they do you should be able to issue app update to keep up with Microsoft.