ComboBox.StaysOpenOnEdit 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property bool StaysOpenOnEdit { bool get(); void set(bool value); };
public bool StaysOpenOnEdit { get; set; }
member this.StaysOpenOnEdit : bool with get, set
Public Property StaysOpenOnEdit As Boolean
屬性值
true
表示當使用者按下文字區域開始編輯時,保持下拉式清單控制項開啟,否則為 false
。 預設為 false
。
範例
這個範例示範如何使用 StaysOpenOnEdit 屬性來建立下拉式方塊,當使用者在文字方塊中輸入資訊時,下拉式方塊會保持開啟狀態。
<ComboBox Name="cb" Margin="10,10,3,3" Width="200" Height="30" Grid.Column="0" Grid.Row="2"
ItemsSource="{StaticResource myCities}" Text="My Cities"
IsEditable="true" IsReadOnly="true"
IsDropDownOpen="True" StaysOpenOnEdit="True">
</ComboBox>
備註
相依性屬性資訊
識別碼欄位 | StaysOpenOnEditProperty |
中繼資料屬性設定為 true |
無 |