共用方式為


AccessText.TextWrapping 屬性

定義

如果線條方塊中 AccessText 項目的文字內容溢位,取得或設定是否換行。

public:
 property System::Windows::TextWrapping TextWrapping { System::Windows::TextWrapping get(); void set(System::Windows::TextWrapping value); };
public System.Windows.TextWrapping TextWrapping { get; set; }
member this.TextWrapping : System.Windows.TextWrapping with get, set
Public Property TextWrapping As TextWrapping

屬性值

TextWrapping

要使用的換行行為。 預設為 NoWrap

範例

下列範例使用 TextWrappingAccessText 屬性來建立多行標籤。

<TextBox Name="textBox1" Width="50" Height="20"/>
<Label Width="200" HorizontalAlignment="Left"
       Target="{Binding ElementName=textBox1}">
  <AccessText TextWrapping="WrapWithOverflow">
    _Another long piece of text that requires text wrapping
    goes here.
  </AccessText>
</Label>

備註

相依性屬性資訊

識別碼欄位 TextWrappingProperty
中繼資料屬性設定為 true AffectsMeasure, AffectsRender

適用於

另請參閱