zoukankan      html  css  js  c++  java
  • PowerPoint’s Menu is Too Big

    转自:

    http://jdav.is/2016/08/31/powerpoints-menu-is-too-big/

    It seems that when Microsoft deployed their latest versions of Office, they forgot to adjust the DPI (dots per inch) settings for PowerPoint rendering the menus on second monitors extremely large.  With the menu and its fonts so large, the design space on a secondary monitor is very limited, if not useless altogether.

    Take a look at the two images comparing PowerPoint’s menu to that of Word’s (same monitor/resolution).

    PowerPoint
    powerpoint-large
    Word
    word-normal

    The great news is that it’s an easy fix.

    To handle compatibility issues such as these, Microsoft’s applications use a manifest file.  We simply need to update PowerPoint’s manifest file to disable the feature dpiAware.

    1. Open NotePad as an Administrator (right-click on NotePad and choose “Run as Administrator” from the context menu)
    2. In NotePad, open the file “C:Program Files (x86)Microsoft Office ootOffice16powerpnt.exe.manifest” (note: this is the path for Office 2016, but Office 2015 and older would be similar)
    3. Around line 27, you’ll see the following:
    4. Change it to:
    5. Save the file and restart PowerPoint

    Voila!

    PowerPoint Fixed
    powerpoint-normal

    BONUS!

    You can also apply the same fix to other applications. (But, you’ll need to tell Windows to look for the manifests.)

      1. Open up the registry editor (run regedit.exe)
      2. Navigate to Computer -> HKEY_LOCAL_MACHINE -> SOFTWARE -> Microsoft -> Windows -> CurrentVersion -> SideBySide
      3. In the right pane, right-click in the empty area and choose New -> DWORD (32-bit) Value
      4. Type PreferExternalManifest and press ENTER
      5. Right-click on PreferExternalManifest and choose Modify
      6. Type 1 and click OK
        preferexternalmanifest-registry
      7. Exit the registry editor
      8. Now, for whichever program you are using that has resolution issues:
        1. Find that application’s executable file (e.g. for Photoshop, “C:Program FilesAdobeAdobe Photoshop…Photoshop.exe”)
        2. In the same directory, create a new text file with the same name and append “.manifest” (e.g. Photoshop.exe.manifest)
        3. Open the file and add the following code:
        4. Save the file and restart your application
  • 相关阅读:
    《数据结构第一章复习》
    《图的基本操作》
    《矩阵的一些基本操作》
    <矩阵的基本操作:矩阵相加,矩阵相乘,矩阵转置>
    《两个二维数组(矩阵)相乘》
    C#隐藏与显示系统任务栏和开始菜单栏按钮
    C#通过窗体属性缩小一定尺寸时,无法再缩小窗体尺寸问题
    C#一个窗体调用另一个窗体的方法
    C#异步线程
    C#中MessageBox.Show问题(让提示窗口不显示在任务栏中)
  • 原文地址:https://www.cnblogs.com/goozgk/p/8513305.html
Copyright © 2011-2022 走看看