방법: FlowDocument 열 구분 속성 사용
이 예제에서는 FlowDocument의 열 구분 기능을 사용하는 방법을 보여 줍니다.
예제
다음 예제에서는 FlowDocument를 정의하고 ColumnGap, ColumnRuleBrush 및 ColumnRuleWidth 특성을 설정합니다. FlowDocument에는 샘플 콘텐츠의 단일 단락이 포함됩니다.
<FlowDocumentReader>
<FlowDocument
ColumnGap="20.0"
ColumnRuleBrush="DodgerBlue"
ColumnRuleWidth="5.0"
ColumnWidth="140.0"
>
<Paragraph Background="AntiqueWhite" TextAlignment="Left">
This paragraph has the background set to antique white to make its
boundaries obvious.
The column gap is the space between columns; this FlowDocument will
have a column gap of 20 device-independend pixels. The column rule
is a vertical line drawn in the column gap, and is used to visually
separate columns; this FlowDocument a Dodger-blue column rule that
is 5 pixels wide.
The column rule and column gap both take space between columns. In
this case, a column gap width of 20 plus a column rule of width of 5
results in the space between columns being 25 pixels wide, 5 pixels
for the column rule, and 10 pixels of column gap on either side of the column rule.
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
다음 그림에서는 렌더링된 FlowDocument에서 ColumnGap, ColumnRuleBrush 및 ColumnRuleWidth 특성의 효과를 보여 줍니다.
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET Desktop feedback