use*_*349 10 wpf textblock autosize
我有一个TextBlock我需要自动调整到宽度的一个TreeView.这些TreeView和TextBlock都包含在一个StackPanel.在StackPanel里面Expander.宽度TreeView应该驱动其他对象的宽度,我需要TextBlock更改的高度来显示全文.我所有的努力都导致了TextBlock驱动宽度.谢谢!
<Expander IsEnabled="True" HorizontalAlignment="Right" Margin="0,8,8,53" x:Name="ExpanderBookMarks" Width="Auto" Foreground="#FF625B5B" ExpandDirection="Down" IsExpanded="True" Header="Bookmarks" Visibility="Hidden">
<StackPanel Name ="StackPanelBookmark" Orientation="Vertical" Width="{wpf:Binding Path=Width, ElementName=trvBookmarks, Mode=Default}">
<TreeView x:Name="trvBookmarks" ItemsSource="{Binding}"
ItemTemplateSelector="{StaticResource BookmarkTemplateSelector}"
Margin="0,0,0,0"
TreeViewItem.Selected="HandleTreeViewItemClick" AllowDrop="True"/>
<TextBlock x:Name="TextBlockBookmarkDiscription" TextWrapping="Wrap" Foreground="AntiqueWhite" Background="Transparent" Width="150">
This is the discription area and needs to be very long because the end user can put 400 charectors in.
</TextBlock>
</StackPanel>
<!--End of Dougs Treeview-->
</Expander>
Run Code Online (Sandbox Code Playgroud)
Rya*_*ndy 18
试试这个:
<TextBlock Width="{Binding ElementName=trvBookmarks,Path=ActualWidth}" ... />
Run Code Online (Sandbox Code Playgroud)