I'm developing a wp app, IDE: VisualStudio 2013
when I try to use flyout in button. button.flyout is not listed out in XAML page
Ref:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn308515.aspx
<Button Name="btnFly" Content="img">
<Button.Flyout>
</Button.Flyout>
</Button>
Button.Flyout is not listed when I put.[dot]
You have create Windows Phone 8.1 app that uses Windows Runtime not the Silverlight.
Related
I would like to force the theme for a MAUI Windows app, for example for screenshot purposes. The Shell and Application Elements don't support the RequestedTheme property that can be used with WinUI.
You can force the theme by setting the RequestedTheme property in the App.xaml in the Platforms\Windows subfolder in the project:
<maui:MauiWinUIApplication
x:Class="NetMaui.WinUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:maui="using:Microsoft.Maui"
RequestedTheme="Light"
xmlns:local="using:NetMaui.WinUI">
</maui:MauiWinUIApplication>
I created installer using wix and able to see the icon on desktop shortcut and control panel, but few of our machines its not showing icon on task bar. Taskbar its showing default windows exe ICOn.
How can I resolve it, bcz in our development machines I am able to see custome ICon on taskbar but testing machine shows default one
<Icon Id="GELogo.ico" SourceFile="$(env.installer_icons_dir)\GELogo.ico"/>
<Property Id="ARPPRODUCTICON" Value="GELogo.ico" />
Even shortcutID also I added
I ran into a similar problem where the icon was displayed on some computers but not others. The fix was to change the value of the Icon Id so that it ends with .exe instead of with .ico.
<Icon Id="GELogo.exe" SourceFile="$(env.installer_icons_dir)\GELogo.ico"/>
<Property Id="ARPPRODUCTICON" Value="GELogo.exe" />
I receive this error when trying to deploy my app to my desktop, but it works fine when deploying to Windows 10 phones. Any ideas on how to fix this?
The namespace:
xmlns:Maps="using:Windows.UI.Xaml.Controls.Maps"
XAML usage:
<Grid>
<Maps:MapControl />
</Grid>
I don't have any other logic just trying to display the map for now.
EDIT:
Turns out the MapControl sample from the Windows Universal Samples Github works on desktops (and phones) other than the desktops at my work.
Thanks to Andrew Pilley for pointing me to the Github.
Still looking for a reason this would not work on some Windows 10 desktops? The desktops are running and the project is targeting build 10240.
Do you have the Bing Maps SDK ?
VS Gallery Ref : https://visualstudiogallery.msdn.microsoft.com/224eb93a-ebc4-46ba-9be7-90ee777ad9e1
Hello I try to implement Charting with WinRT XAML Toolkit for windows phone 8.1.
It runs well while I do debug, but the page which contains chart can not be navigated after I release it.
But it only happened when I add Area,Line,Column, and Bar Chart, it works fine with pie.
Please let me know if something I need to do to fix this,
I install the Toolkit using Nuget Package Manager.
Thank you
a separator line doesn't appear between items, isn't it supported in windows phone version, or I'm doing something wrong?
<MenuFlyout>
<MenuFlyoutItem Text="Like"/>
<MenuFlyoutItem Text="Report"/>
<MenuFlyoutSeparator/>
<MenuFlyoutItem Text="Share"/>
</MenuFlyout>
Yes, in Windows Phone 8.1 App, MenuFlyoutSeparator can't appear.
This is MSDN Tip: In a Windows Phone Store app, MenuFlyoutSeparator is ignored if present in your XAML, and can be removed. Here is Url.