ComboBox.PlaceholderText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定控制項中顯示的文字,直到使用者動作或其他作業變更值為止。
public:
property Platform::String ^ PlaceholderText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring PlaceholderText();
void PlaceholderText(winrt::hstring value);
public string PlaceholderText { get; set; }
var string = comboBox.placeholderText;
comboBox.placeholderText = string;
Public Property PlaceholderText As String
<ComboBox PlaceholderText="placeholderString"/>
屬性值
未選取任何值時,控制項中顯示的文字。 預設為空字串 ("")。
範例
以下說明如何將預留位置文字新增至 ComboBox。
<ComboBox Header="Colors" PlaceholderText="Pick a color">
<x:String>Blue</x:String>
<x:String>Green</x:String>
<x:String>Red</x:String>
<x:String>Yellow</x:String>
</ComboBox>
備註
當 SelectedIndex 為 -1 且 SelectedItem 為 Null時,會顯示預留位置文字。 (這兩個屬性會保持同步。) 使用者一旦選取專案之後,就無法顯示預留位置文字。 不過,您可以程式設計方式將 SelectedIndex 設定為 -1 或 SelectedItem 設定為 null ,以再次顯示預留位置文字。