共用方式為


SystemSettings.ScreenOrientation 屬性

取得或設定裝置的目前螢幕方向。

命名空間:  Microsoft.WindowsCE.Forms
組件:  Microsoft.WindowsCE.Forms (在 Microsoft.WindowsCE.Forms.dll 中)

語法

'宣告
Public Shared Property ScreenOrientation As ScreenOrientation
'用途
Dim value As ScreenOrientation

value = SystemSettings.ScreenOrientation

SystemSettings.ScreenOrientation = value
public static ScreenOrientation ScreenOrientation { get; set; }
public:
static property ScreenOrientation ScreenOrientation {
    ScreenOrientation get ();
    void set (ScreenOrientation value);
}
public static function get ScreenOrientation () : ScreenOrientation
public static function set ScreenOrientation (value : ScreenOrientation)

屬性值

型別:Microsoft.WindowsCE.Forms.ScreenOrientation

其中一個列舉值,為 0、90、180 和 270。預設值為 0 (縱向檢視)。

備註

可將縱向值 (0) 變更成 90、180 或 270,而不需重設裝置。

範例

下列範例會將這個屬性的值設定成 0,且將值顯示在狀態列上。這個範例是 SystemSettings 類別完整範例的一部分。

' Set the screen orientation to normal
' and display the value on the status bar.
SystemSettings.ScreenOrientation = ScreenOrientation.Angle0
Me.StatusBar1.Text = SystemSettings.ScreenOrientation.ToString()
// Set the screen orientation to normal
// and display the value on the status bar.
SystemSettings.ScreenOrientation = ScreenOrientation.Angle0;
this.statusBar1.Text = SystemSettings.ScreenOrientation.ToString();

使用權限

平台

Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Compact Framework

支援版本:3.5、2.0

請參閱

參考

SystemSettings 類別

SystemSettings 成員

Microsoft.WindowsCE.Forms 命名空間