windows-8

XamlParseException when I inherit a Page from a Generic base class

Deadly 提交于 2019-12-07 20:43:08
问题 I'm currently working with this exact code: public class ViewModelAwarePage<T> : Page { } public class BaseMainMenuView : ViewModelAwarePage<String> { } public sealed partial class MainMenuView : BaseMainMenuView { public MainMenuView() { this.InitializeComponent(); } } And xaml: <local:BaseMainMenuView x:Name="pageRoot" x:Class="Tutorial.UI.WinRT.Views.MainMenuView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns

WPF Tile Control like Windows 8 Start Menu

梦想与她 提交于 2019-12-07 18:08:26
So, does anyone knows a panel or a control which emulate Windows 8 Stat Menu Tile Panel? with all of those features like SQUAD tiles or bigger ones? Also i have seen this link on Stack overflow, but because of low reputation points, i could comment there that "IT DOESN'T WORK" Emulates Windows 8 Start Menu Tile Layout Engine Ouarzy The answer is: no, there is no native control which emulate a tile. Thus, basically, you could do it yourslef as explained in the link you provide: Emulates Windows 8 Start Menu Tile Layout Engine If it does not work, you probably have something wrong because it is

Pin tile to selected position on Startscreen (programmatically) Windows 8

浪尽此生 提交于 2019-12-07 17:37:13
问题 I am searching a solution to pin an installed app or desktop application to the windows 8 startscreen. I have figured out to do this like it is described in this post before There has also been a long disscusion about this problem But there was no answer to my question: How can I pin a new tile to a selected position on the startscreen? If I install a new app/application windows 8 pins the new application at the end of the Startscreen. (windows 8.1 does not) But if I want to place the tile f

identify user accross WP8 and Win8: ANID2 vs SafeCustomerId

早过忘川 提交于 2019-12-07 17:23:18
问题 We have a web service that needs to indentify a user accross his devices, wp8, and win8. On the phone side we have UserExtendedProperties.GetValue("ANID2") , which get's the anonymous microsoft id. On Windows8 there's OnlineIdAuthenticator.AuthenticateUserAsync with UserIdentity.SafeCustomerId and other properties, though none of them look like the ANID2. The OnlineIdAuthenticator api exists on phone, but throws NotImplementedException. Is there any way to get a common user identifier on win8

Controlling an iframe YouTube player within a Windows 8 Metro js app

人盡茶涼 提交于 2019-12-07 17:15:50
问题 While experimenting a little with the capabilities of Windows 8 Metro js apps (the ones created using HTML/Javascript/CSS, meant to be published on the Windows Store of the upcoming Windows 8), I went and created a very simple test application that creates dynamically an iframe-based YouTube player, tied to a specific video. So far, so good. Later, I wanted to be able to get feedback from the video being played at that iframe. Google offers extensive help on achieving this, and explains that

Is FluidMoveBehavior available?

坚强是说给别人听的谎言 提交于 2019-12-07 15:32:54
问题 I have calls to Grid.SetRow and Grid.SetColumn in my code which I'm trying to animate. According to the answer at http://social.msdn.microsoft.com/Forums/en-CA/wpf/thread/257779f7-b459-43fc-a4a1-f24641c50e09, it is recommended to make use of FluidMoveBehavior, but it doesn't look like this is available for Windows 8. What are my options for animating the children of a Grid when their positions change? I'm basically looking for a way to achieve linear transition. 回答1: There is a new built-in

Does Microsoft Surface support Flash websites? [closed]

一世执手 提交于 2019-12-07 14:30:02
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I've searched Google but have not found a clear answer. Will my or my work's Flash site / application run on Microsoft Surface tablet? 回答1: It seems that IE on Microsoft surface will have a list of approved sites where flash is supported, and this list is maintained by Microsoft! Check this post: Flash only

Free PDF writer for Windows 8 Metro Apps [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-07 13:55:07
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Is there any PDF writer for Windows 8 / Metro Application? I am developing a Windows 8 App and looking for a library that can generate

VB6 on Windows 8 ARM based Tablets

瘦欲@ 提交于 2019-12-07 13:40:31
问题 With the announcement that VB6 will be supported on Windows 8, my question is: Is there any place where Microsoft has said (Yes or No) VB6 apps will run on the ARM based Tablets? And, if not, is there any ARM emulator, so we could test our VB6 apps on a Windows 8 ARM Tablet? 回答1: My understanding is: No. Windows 8 will support 2 different APIs: Win32 (and .NET on top of that) and WinRT. The Windows 8 ARM builds will only support WinRT. VB6 is compiled against the Win32 API, it won't work on

Sending multiple parameters to WinJS.Binding.converter() function

落花浮王杯 提交于 2019-12-07 13:40:29
问题 Is there a way to send more than one parameter to a WinJS.Binding.converter() function? Consider the following data and output: { contactName: "Tara Miller", mainNumber: "555-405-6190", alternateNumber: "555-209-1927" }, { contactName: "Bryan Bond", alternateNumber: "555-574-4270" }, { contactName: "Jenna Siever", mainNumber: "555-843-8823", alternateNumber: "555-799-5424" }, Here is the HTML. The MyData.chooseBestNumber converter function is used to display either a person's main phone