2009-11-05 6 views
2

라디오 단추의 텍스트 자체를 줄이면 안됩니까? 예를 들어, 경계 영역이 약 ​​350 픽셀이고 거기에 라디오 버튼을 배치하고 싶습니다. 할 수는 있지만 텍스트가 길면 텍스트를 감쌀 수 없습니다.텍스트 줄 바꾸기 Silverlight 라디오 단추

답변

5

이 시도 :

<RadioButton Width="100" > 
     <RadioButton.Content> 
      <TextBlock Text="This is some text that is very long" TextWrapping="Wrap" /> 
     </RadioButton.Content> 
    </RadioButton> 
관련 문제