0

Windows PhoneのRichTextBox要素の一部のブロックのMarginプロパティを設定するにはどうすればよいですか?RichTextBox内のブロックのオフセットを設定します。

<RichTextBox> 
    <Paragraph>Today I am going to talk about RichTextBox, I know you must be having lot of expectations from this RichTextBox. Here I will try my best to make you aware of what will work and what will not work in this short post for RichTextBox in Windows Phone </Paragraph> 
</RichTextBox> 

答えて

1

あなたはInlineUIContainerを使用することができ、その中のTextBlockを置く:

<RichTextBox> 
      <Paragraph> 
       <InlineUIContainer> 
        <TextBlock Text="Today I am going to talk about RichTextBox, I know you must be having lot of expectations from this RichTextBox. Here I will try my best to make you aware of what will work and what will not work in this short post for RichTextBox in Windows Phone" 
           TextWrapping="Wrap" 
           Margin="10" /> 
       </InlineUIContainer> 
      </Paragraph> 
     </RichTextBox> 
関連する問題