windows-8.1 相关问题

2013年10月18日发布的Windows 8.1是Microsoft Windows 8的第一次重大更新.Windows 8.1是Windows NT系列的另一个新增功能。

Http CONNECT 请求返回空响应

我想使用TcpClient读取Https页面。我使用下面的代码 var client = new TcpClient(url, 443);//"127.0.0.1", 8888);// Fiddler 端口 客户端.SendTimeout = 30000; 流响应流 = 客户端。

回答 1 投票 0

Android Studio Hedgehog 发送相同的两个警告

我刚刚在我的 Windows 8.1 笔记本电脑上安装了最新版本的 Android Studio Hedgehog 2023.1.1 Patch 2。 当我打开应用程序时,IDE 不断向我显示 “无法确定 abd 版本”...

回答 1 投票 0

Android Studio Hedgehog 向相同的两个 wanring 发送垃圾邮件

我刚刚在我的 Windows 8.1 笔记本电脑上安装了最新版本的 Android Studio Hedgehog 2023.1.1 Patch 2。 当我打开我的应用程序时。 IDE 不断向我显示“无法确定 abd 版本”...

回答 1 投票 0

未检测到已安装的组件。元素已经是另一个元素的子元素

在 App.xaml 中,我添加了带有按钮的应用程序资源: 在 MainPage.xaml.cs 中,我尝试... 在 App.xaml 中,我添加了带有按钮的应用程序资源: <Application.Resources> <Button x:Key="MyButton"/> </Application.Resources> 在MainPage.xaml.cs中,我尝试以编程方式在我的网格中添加此按钮。 Button btn = (Button)Application.Current.Resources["MyButton"]; myGrid.Children.Add(btn); 但是它给出了这样的错误: No installed components were detected. Element is already the child of another element. 在 MainPage.xaml 中: <Grid x:Name="myGrid" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> </Grid> 我不知道我做错了什么。 谢谢。 如果您使用在应用程序资源中定义的控件的多个实例,通常会引发此异常。如果是这种情况,你应该这样做: <Button x:Key="MyButton" x:Shared="false"/> 编辑:WInRT 似乎不支持 x:shared 属性。 有一个使用 ControlTemplates 的解决方法:http://www.gdomc.com/0428/binding-the-content-property-of-a-contentcontrol-in-winrt/ 您无法添加已经是另一个元素的子元素的元素。就像你的孩子不可能是另一个男人的孩子一样。 我对此很陌生,但我做了类似的事情并且犯了同样的错误。 这对我不起作用: btn = new Button { Text = $"{i}", HeightRequest = 50, WidthRequest = 50 }; flexLayout1.Children.Add(btn) 但这有效: flexLayout1.Children.Add(new Button { Text = $"{i}", HeightRequest = 50, WidthRequest = 50 });

回答 3 投票 0

项目部署停留在注册应用程序以从布局运行

我创建了一个 Windows Store 8.1 应用程序,并尝试在本地计算机上部署。项目构建正确,但未部署。 Visual Studio 2013 看起来可以正常工作,但在 Ou 上...

回答 3 投票 0

我无法下载 mongoose.exe

故事 所以,我想看看小型 Web 服务器是什么样的,然后我发现了 mongoose,这是一个用于静态站点的漂亮、小型、简单的 Web 服务器。当我尝试下载它时,恐怖出现了。我...

回答 2 投票 0

Chrome 无法打开本地 html 文件

我在 Win 8.1(64 位)上的 Chrome (v31) 上遇到问题,如果我双击任何本地 html 文件,Chrome 不会打开它们。 我已将默认浏览器设置为 Chrome,但它拒绝打开...

回答 4 投票 0

选择项目时更改 ListView 的 DataTemplate 内 TextBlock 的前景色

我正在使用 C#/XAML 构建 Windows 应用商店应用程序。 我有一个绑定到 ItemsSource 的简单 ListView。有一个 DataTemplate,它定义了每个项目的结构,并且有一个 ContentControl 和一个

回答 3 投票 0

更改 Windows RDP 连接栏位置

我经常在使用 RDP 时浏览互联网,在选项卡之间切换时,窗口顶部的连接栏位置很烦人。怎么可能改变风的位置...

回答 1 投票 0

如何在 Windows 8.1 上断开蓝牙 LE 设备

我正在 Windows 8.1 下开发一个低功耗蓝牙应用程序,并使用微软蓝牙文件堆栈。我几乎完成了所有例程,我实现了:连接,重新连接,

回答 2 投票 0

C++ 多线程程序不能在 Windows 8 上用 g++ 编译

我正在尝试在 Windows 8 上实现多线程 C++ 程序。我编写了以下代码,但它没有在我的 Windows 8 机器上编译。 测试.cpp #包括 #包括 我正在尝试在 Windows 8 上实现多线程 C++ 程序。我编写了以下代码,但它没有在我的 Windows 8 机器上编译。 test.cpp #include <iostream> #include <thread> void thread_function() { std::cout << "thread function\n"; } int main() { std::thread t(&thread_function); // t starts running std::cout << "main thread\n"; t.join(); // main thread waits for the thread t to finish return 0; } 我越来越 D:\Madhusudhana H V\home\StrideSimulator>g++ test.cpp test.cpp: In function 'int main()': test.cpp:11:35: error: no matching function for call to 'std::thread::thread(void (*)())' 11 | std::thread t(&thread_function); // t starts running | ^ In file included from c:\program files\gcc\include\c++\11.1.0\thread:43, from test.cpp:2: c:\program files\gcc\include\c++\11.1.0\bits\std_thread.h:157:5: note: candidate : 'std::thread::thread(std::thread&&)' 157 | thread(thread&& __t) noexcept | ^~~~~~ c:\program files\gcc\include\c++\11.1.0\bits\std_thread.h:157:21: note: no known conversion for argument 1 from 'void (*)()' to 'std::thread&&' 157 | thread(thread&& __t) noexcept | ~~~~~~~~~^~~ c:\program files\gcc\include\c++\11.1.0\bits\std_thread.h:121:5: note: candidate : 'std::thread::thread()' 121 | thread() noexcept = default; | ^~~~~~ c:\program files\gcc\include\c++\11.1.0\bits\std_thread.h:121:5: note: candidate expects 0 arguments, 1 provided

回答 0 投票 0

WriteableBitmap.WritePixels 在某些 PC 上不刷新

我们在某些 Windows PC 上遇到了非常奇怪的问题。我们有一个视频应用程序,一部分使用 WritePixels 来更新 WriteableBitmap 并将帧显示到屏幕上。 代码是: _currentframe.

回答 2 投票 0

模拟器未在 Visual Studio 中打开以进行 Xamarin 移动应用程序开发

我正在尝试在 Windows 8.1 Pro 操作系统上使用 Xamarin 和 Visual Studio 2019 开发移动应用程序。我安装了 .NET 桌面开发、ASP.NET 和 Web 开发以及移动设备

回答 2 投票 0

MQTT-SN与Windows

我已经在Windows上运行MQTT(Mosquito)有一段时间了,它和我的Netduino一起工作得很好,谢谢ppatierno。但现在我需要开始整合mqtt-sn,以便从一个有线串行连接 ...

回答 1 投票 1

为Windows安装MPI

我试图安装MPI的Windows 8,所以当我搜索网络,我得到了在XP7上安装它的步骤,但不是为Windows 8。链接是:http:/swash.sourceforge.netonline_docswashimpnode9.html ...。

回答 2 投票 14

从alt + tab获取所有窗口,不包括Metro窗口-Windows 8 / 8.1

是否可以从alt + tab窗口获取所有窗口-不包括Metro?也许Windows 8有其他选择?我试图使用EnumWindows函数获取所有窗口并粘贴hwnd'...

回答 1 投票 0

如何从cmd.exe运行python3

[当我在Windows 8.1控制台(cmd.exe)中键入python时,看到以下文本Python 2.7.16(v2.7.16:413a49145e,Mar 4 2019,01:37:19)[MSC v.1500 64位(我要运行win32上的AM D64)] ...

回答 1 投票 0

如何使用ResourceDictionary中定义的样式

我有几种通用样式,我想在Windows 8.1应用程序的多个页面中共享它们。我知道可以使用合并字典选项来实现,但是我不知道如何使用样式...

回答 1 投票 9

腻子中的粘贴会导致冻结

我需要在Windows(8.1)上的Putty中粘贴很多代码行。所以我知道复制/粘贴的工作原理,但是从我尝试粘贴30多个字符的那一刻起,它就导致程序冻结...

回答 1 投票 5

Opendaylight功能安装错误,即使在安装了JDK 11和maven 3.6之后也没有提供所需的输出

同时执行功能:使用karaf ODL安装指南在此处安装odl-restconf,网址为https://docs.opendaylight.org/en/stable-magnesium/getting-started-guide/installing_opendaylight.html我正在获取...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.