zoukankan      html  css  js  c++  java
  • 代码片段和快捷键

    1、判断文件是否存在

     StorageFolder folder = await ApplicationData.Current.LocalFolder.CreateFolderAsync("Books", CreationCollisionOption.OpenIfExists);  
    
                    StorageFile stBook = null;
                    try
                    {
                          stBook = await folder.GetFileAsync(sbookName); 
                    }
                    catch
                    {
                          stBook = null;
                    }

    2、

    方便的键盘快捷键

    Windows + H = 打开“分享”超级按钮

    Windows + I = 打开“设置”超级按钮

    Windows + K = 打开“设备”超级按钮

    Windows + Q = 搜索应用

    Windows + F = 搜索文件

    Windows + W = 搜索Windows设置

    Windows + X = 进入常用管理工具(或在左下角右键单击)

    Windows + E = 在桌面环境下运行文件管理器

    Windows + O = 锁定屏幕方向

    Windows + R = 打开“运行”对话框

    Windows + L = 锁定计算机

    Windows + Print Screen = 保存屏幕截图至你的图片 > 截图文件夹

    Windows + 1,2,3,4,5,6,7,8,9,0任意键 = 运行锁定至任务栏的对应程序

    Ctrl + Shift + Esc = 打开任务管理器

  • 相关阅读:
    【模板】后缀自动机
    【模板】矩阵求逆
    【hdu5517】Triple
    【模板】多标记 LCT
    【洛谷P4172】水管局长
    【模板】LCT
    【CF786B】Legacy
    jacoco学习
    python + redis
    Python Gitlab Api 使用方法
  • 原文地址:https://www.cnblogs.com/hebeiDGL/p/2755630.html
Copyright © 2011-2022 走看看