1. Press the "Win E" key combination to open the Explorer (or double-click the desktop icon "Computer" directly);
2. Click the menu bar---View---Options;
3. Open Options---View and tick in front;
4. Close the document and reopen it to observe.
The file explorer uses the Ribbon menu, as shown in the figure:
Adopt Ribbon menu to make the overall style of computing dows 8.
The "Browse" window of the old version of "Explorer" includes title bar, menu bar, toolbar, left window, right window and status bar. "Explorer" is also a window, and its components are similar to general windows. Its special windows include folder windows and folder content windows. The folder window on the left displays folders in the form of a tree directory, and the folder content window on the right shows the contents of the folder opened in the left window.
SQL Server and Message Queuing provide resource managers that participate in distributed transactions. Oracle, Sybase, Informix, IBM (for IBM DB2), and Ingres also provide compatible file explorers for their respective database products.
When using Android software, we often need to open the system settings or information interface to set related system items or view system-related information. At this time, we can use the following statements to achieve this: (such as opening the "Wireless and Network Settings" interface)
Intent intent = new Intent("/");
ComponentName cm = new ComponentName("com.android.settings","com.android.settings.WirelessSettings");
intent.setComponent(cm);
intent.setAction("android.intent.action.VIEW");
activity.startActivityForResult( intent , 0);
After testing, use the following fields to directly open the corresponding system interface in the software
com.android.settings.AccessibilitySettings Accessibility Settings
com.android.settings.ActivityPicker Select activity
com.android.settings.ApnSettings APN Settings
com.android.settings.ApplicationSettings Application Settings
com.android.settings.BandMode Set GSM/UMTS band
com.android.settings.BatteryInfo Battery information
com.android.settings.DateTimeSettings Date and Bashang Travel Network time settings
com.android.settings.DateTimeSettingsSetupWizard Date and time settings
com.android.settings.DevelopmentSettings Application Settings=》Development Settings
The above is the detailed content of How to set up the window interface of Windows 8. For more information, please follow other related articles on the PHP Chinese website!