Windows 10用户变量、系统变量等环境变量新建、编辑修改与删除的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows 10用户变量、系统变量等环境变量新建、编辑修改与删除的方法相关的知识,希望对你有一定的参考价值。
参考技术A本文介绍在Windows 10操作系统中进行 用户变量 、 系统变量 等两种环境变量的新建、修改与删除方法。
首先,按下 Windows徽标键 ,同时用拼音输入法键入“控制面板”。
在“应用”中找到控制面板并打开。
选择“查看方式”为“类别”,选择“系统与安全”。
选择“系统”。
在打开的界面中,选择右侧的“高级系统设置”。
在打开的界面中,选择“环境变量”。
即可分别对“用户变量”与“系统变量”加以新建、编辑、删除。
了解 Windows 10 何时为平板电脑模式 - Windows 10 / Windows 10 Mobile
【中文标题】了解 Windows 10 何时为平板电脑模式 - Windows 10 / Windows 10 Mobile【英文标题】:Know when Windows 10 are Tablet Mode - Windows 10 / Windows 10 Mobile 【发布时间】:2016-01-07 14:03:15 【问题描述】:我从事适用于 Windows 10 和 Windows 10 移动版的通用应用程序。 有谁知道如何检查 Windows 10 是否在平板电脑模式下运行?
我在这里找到了这个问题,但这是针对 Windows 窗体的:How can I detect when Window 10 enters tablet mode in a Windows Forms application?
谢谢
【问题讨论】:
【参考方案1】:我认为下面的代码可以帮助你:
UIViewSettings^ uiViewSettings = UIViewSettings::GetForCurrentView();
UserInteractionMode mode = uiViewSettings->UserInteractionMode;
switch (mode)
case UserInteractionMode::Touch:
// PC is in tablet mode or other touch-first environment
break;
case UserInteractionMode::Mouse:
// PC is not in tablet mode or other mouse-first environment
break;
【讨论】:
【参考方案2】:你 query the UserInteractionMode - 这是来自该链接的示例代码
switch(UIViewSettings.GetForCurrentView().UserInteractionMode)
case UserInteractionMode.Mouse:
VisualStateManager.GoToState(this, "MouseLayout", true);
break;
case UserInteractionMode.Touch:
default:
VisualStateManager.GoToState(this, "TouchLayout", true);
break;
【讨论】:
case UserInteractionMode.Touch:默认:应该是触摸模式。 :)以上是关于Windows 10用户变量、系统变量等环境变量新建、编辑修改与删除的方法的主要内容,如果未能解决你的问题,请参考以下文章