2014-10-28 4 views
0

랩 패널 3 바인딩이 있고 두 번째 바인딩이 매우 짧으며 세 번째 바인딩이 매우 길며 줄 바꿈 패널 (3 바인드)에서 새 줄로 이동했습니다. . 같은 줄에 머물 방법. 랩 판넬은 많은 가능성을 보여 주며 잘 어울립니다. 다른 패널을 사용할 수 없습니다. 고맙습니다!내 바인딩이 매우 긴 경우 WrapPanel, 끊기 줄 바꿈

<WrapPanel x:Name="WrapPrvi" Orientation="Horizontal" Grid.Row="9" Grid.Column="1"> 
    <TextBlock TextWrapping="Wrap" Text="xxxxx " FontFamily="Times New Roman" 
      FontSize="16" /> 
    <TextBlock TextWrapping="Wrap" Text="{Binding Info.Municipality.Tijelo2}" 
      FontFamily="Times New Roman" FontSize="16" FontWeight="Bold" /> 
    <TextBox x:Name="Pream" TextWrapping="WrapWithOverflow" 
      Text="{Binding Register.Preambula, Mode=TwoWay, 
        UpdateSourceTrigger=PropertyChanged}" Height="95.862" 
      Width="702.407" FontFamily="Times New Roman" FontSize="16" /> 
</WrapPanel> 

답변

1

첫째, 포장을 제거 : 텍스트가 전체에 표시되어 있지 않은 경우 WrapPanel의 폭이 어쩌면 그리드 열에서 정의 된 어떤 식 으로든 경우

<TextBox x:Name="Pream" 
     Text="{Binding Register.Preambula, Mode=TwoWay, 
       UpdateSourceTrigger=PropertyChanged}" Height="95.862" 
     Width="702.407" FontFamily="Times New Roman" FontSize="16" /> 

그런 다음, 확인합니다.

+0

문제가 해결되었습니다. – Ibrahim