CommandBar.IsDynamicOverflowEnabled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值表示當空間有限時,主要命令是否自動移至溢位功能表。
public:
property bool IsDynamicOverflowEnabled { bool get(); void set(bool value); };
bool IsDynamicOverflowEnabled();
void IsDynamicOverflowEnabled(bool value);
public bool IsDynamicOverflowEnabled { get; set; }
var boolean = commandBar.isDynamicOverflowEnabled;
commandBar.isDynamicOverflowEnabled = boolean;
Public Property IsDynamicOverflowEnabled As Boolean
<CommandBar IsDynamicOverflowEnabled="bool"/>
屬性值
bool
如果主要命令在空間有限時自動移至溢位功能表,則為 true;否則為 false。 預設值為 True。
備註
如需詳細資訊和指導方針,請參閱 命令行 文章。
從 Windows 10 1607 版開始,CommandBar 引進了動態溢位功能。 根據預設, PrimaryCommands 會在命令行寬度變更時自動移入或移出溢位區域,例如,當使用者調整其應用程式視窗的大小時。 您可以將IsDynamicOverflowEnabled屬性設定為 false ,以停用此行為。
動態溢位只會影響命令的UI呈現,它不會將命令從 PrimaryCommands 集合移至 SecondaryCommands。
版本相容性
IsDynamicOverflowEnabled 屬性在 Windows 10 1607 版之前無法使用。 如果您的應用程式在 Microsoft Visual Studio 中的「最低平臺版本」設定小於此頁面稍後需求區塊中顯示的「引進版本」,您必須設計和測試您的應用程式以考慮此專案。 如需詳細資訊,請參閱 版本調適型程序代碼。
注意
當您的應用程式編譯 Windows 10 版本 1607 並在 1607 版 (或更新版本) 上執行時,可以使用動態溢位。 當您的應用程式針對舊版編譯或在舊版上執行時,無法使用動態溢位。
若要避免在舊版 Windows 10 上執行應用程式時發生例外狀況,請勿在沒有先執行運行時間檢查的情況下使用此屬性。 此範例示範如何使用 ApiInformation 類別來檢查此屬性是否存在,然後再使用它。
<CommandBar x:Name="commandBar1" Loaded="CommandBar_Loaded">
...
</CommandBar>
private void CommandBar_Loaded(object sender, RoutedEventArgs e)
{
if (ApiInformation.IsPropertyPresent("Windows.UI.Xaml.Controls.CommandBar", "IsDynamicOverflowEnabled"))
{
commandBar1.IsDynamicOverflowEnabled = true;
}
}