ComboBox.Text 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定目前選取之項目的文字。
public:
property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public string Text { get; set; }
member this.Text : string with get, set
Public Property Text As String
屬性值
目前選取之項目的字串。 預設為空字串 ("")。
範例
這個範例示範如何在 Text 使用者進行選取之前,使用 屬性將文字設定為 TextBox 。
<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>
備註
IsEditable當 屬性為 true
時,設定此屬性會將初始文字輸入到文字方塊中。 當 為 false
時 IsEditable ,設定此值不會有任何作用。
相依性屬性資訊
識別碼欄位 | TextProperty |
中繼資料屬性設定為 true |
BindsTwoWayByDefault, Journal |