Tag: Windows 8的

为什么WinRT不受pipe理?

Windows 8引入了WinRT,就像.NET一样,但是不受pipe理。 为什么它是不受pipe理的? 这是一个性能问题? 这是否意味着垃圾收集不适合较低级别的API?

无法在Windows 8上的IIS中提供WCF服务

当我尝试在Windows 8机器上的IIS上提供WCF服务时,出现了众所周知的错误 您正在请求的页面由于扩展configuration而无法投放。 如果页面是脚本,添加一个处理程序。 如果文件应该被下载,添加一个MIME映射。 旧的解决方法是运行aspnet_regiis -i但是这个命令似乎已经在Windows 8中被弃用了This option is not supported on this version of the operating system. (…) This option is not supported on this version of the operating system. (…) 。 这将是什么工作? (我已经成功地启用了常规的aspx页面,所以大部分的IISconfiguration看起来都很健康。)

Signtool错误:找不到符合Windowsapp store所有给定条件的证书?

所以,我试图用一个pfx文件签署一个Windows 8的appx包。 我正在使用如下命令: signtool.exe sign /fd sha256 /f "key.pfx" "app.appx" 从这里,我得到: SignTool错误:未find符合所有给定条件的证书。 我没有遇到什么“标准”? 这仅用于testing,因此这些是自签名证书。 我已经尝试导入密钥然后对其进行签名,但总是导致相同的错误。 我该如何解决?

进度条与HttpClient

我有一个文件下载function: HttpClientHandler aHandler = new HttpClientHandler(); aHandler.ClientCertificateOptions = ClientCertificateOption.Automatic; HttpClient aClient = new HttpClient(aHandler); aClient.DefaultRequestHeaders.ExpectContinue = false; HttpResponseMessage response = await aClient.GetAsync(url); InMemoryRandomAccessStream randomAccessStream = new InMemoryRandomAccessStream(); // To save downloaded image to local storage var imageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync( filename, CreationCollisionOption.ReplaceExisting); var fs = await imageFile.OpenAsync(FileAccessMode.ReadWrite); DataWriter writer = new DataWriter(fs.GetOutputStreamAt(0)); writer.WriteBytes(await response.Content.ReadAsByteArrayAsync()); await […]

IApplicationActivationManager :: ActivateApplication在C#中?

我正在为metro应用程序进行自动化testing,我发现代码可以做很多我需要的,但它是用C ++编写的: http : //blogs.msdn.com/b/windowsappdev/archive/2012/09/04/自动化最testing-的-窗口8 apps.aspx 我的问题是,我怎么在C#中使用IApplicationActivationManager :: ActivateApplication,因为我不知道C ++? 该方法的详细信息可在此处find: http : //msdn.microsoft.com/en-us/library/windows/desktop/hh706903(v=vs.85).aspx 这是我从Shobjidl.idl中取得的代码: cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(ACTIVATEOPTIONS)") // IApplicationActivationManger is used to activate an immersive application identified by its Application User Model Id. // // Developers who are interested in using the Application Activation Manager do not need to implement the following // interface. An implementation […]

Windows Phone 8模拟器无法连接到互联网

我已经安装了Windows 8的模拟器,并安装了新的WP8 SDK。 我的问题是,模拟器无法连接到互联网。 我没有任何代理,甚至禁用防火墙。 它似乎仍然不工作。 当我查看“networking连接”部分时,可以看到hyper-vpipe理器为模拟器创build的新连接,以及创build的自动网桥,但即使在那里networking状态也是“无Internet连接”。 是否有一些属性,我可以在Hyper-V中手动更改或使networking使所有的工作? 更新 :我已经做了一切build议,包括创build我自己的开关,并删除所有其他人。 但它仍然不起作用。 它不适用于电缆,而不是无线。 也许我错过了如何设置这个东西? 此外,WP模拟器不断提供我每次连接到互联网。 它总是删除我设置的所有定义,用它自己的定义replace它。

ListViewItem不会拉伸到ListView的宽度

我目前正在使用XAMLdevise一个Windows 8商店的应用程序,但我有一个小尺寸的问题。 我有一个DataTemple ListView。 我的ListView和DataTemplate的代码如下: <ListView x:Name="listPageItems" Grid.Row="1" SelectionMode="Extended" IsSwipeEnabled="False" ItemsSource="{Binding Mode=OneWay, Source={StaticResource items}}" ItemTemplate="{StaticResource NavigationItemTemplate}" ScrollViewer.VerticalScrollBarVisibility="Visible"> </ListView> <DataTemplate x:Key="NavigationItemTemplate"> <Grid Height="75"> <Grid.RowDefinitions> <RowDefinition Height="1.6*" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Rectangle Fill="White" /> <Rectangle Fill="{StaticResource SSEGreenBrush}" Grid.Row="1" /> <Border BorderThickness="2" BorderBrush="{StaticResource SSEGreenBrush}" Grid.RowSpan="2" /> <TextBlock x:Name="textTitle" Text="{Binding ClientName}" Style="{StaticResource TitleTextStyle}" Foreground="{StaticResource SSEBlueBrush}" Margin="10,5,5,5" /> <StackPanel […]

获取Windows 8自动颜色主题的活动颜色

在Windows 8中,我已将颜色scheme设置为自动,并在x分钟后将我的壁纸configuration为更改。 配色scheme根据活动壁纸而改变。 我正在开发一个WPF应用程序,并希望当Windows更改颜色scheme以匹配当前壁纸时我的渐变。 有没有办法获得当前/实际的配色scheme,并通知在C#中的变化?

WPF WebBrowser控件 – 位置:固定滚动时元素跳转(Windows 8)

我们使用WPF WebBrowser控件来显示embedded式页面。 在Windows 8上,我们观察到一个奇怪的CSS元素的跳跃行为:滚动时固定。 在Windows 8(也是FF,Chrome)上的IE10以及Windows 7上的WPF WebBrowser控件中,相同的页面可以正常工作。 有没有人见过这种行为之前,知道跳跃运动的修复? 与开发机器上的.Net版本4相比,testing机器(Surface with Win 8)上使用的.NET版本4.5是否成为问题? 开发环境: Windows 7的 Microsoft Visual Studio 2010版本10.0.30319.1 RTMRel Microsoft .NET Framework版本4 testing环境: 表面 Windows 8 Microsoft .NET Framework版本4.5 客户端XAML: <Window x:Class="EmbeddedBrowserTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <WebBrowser HorizontalAlignment="Stretch" Name="webBrowser" VerticalAlignment="Stretch" Grid.Row="1" /> </Grid> </Window> 演示页面HTML: <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" […]

如何parsing没有JSON.NET库的JSON?

我试图在Visual Studio 2011上为Windows 8构build一个Metro应用程序。当我试图做到这一点时,我遇到了一些关于如何parsingJSON而不使用JSON.NET库的问题(它不支持地铁应用程序呢)。 无论如何,我想parsing这个: { "name":"Prince Charming", "artist":"Metallica", "genre":"Rock and Metal", "album":"Reload", "album_image":"http:\/\/up203.siz.co.il\/up2\/u2zzzw4mjayz.png", "link":"http:\/\/f2h.co.il\/7779182246886" }