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 = 打开任务管理器

  • 相关阅读:
    POJ 3349 HASH
    POJ 1840 HASH
    POJ 2785 HASH
    HDU 3926 图的同构
    POJ 2549 二分+HASH
    POJ 2002 统计正方形 HASH
    POJ 1971 统计平行四边形 HASH
    POJ 1635 树的最小表示法/HASH
    POJ 1200 字符串HASH
    ACM学习历程—HDU 1272 小希的迷宫(并查集)
  • 原文地址:https://www.cnblogs.com/hebeiDGL/p/2755630.html
Copyright © 2011-2022 走看看