作成日: 2021/09/08 最終更新日: 2021/12/22
文書種別
不具合
状況
修正済み
詳細
C1DataGridのセルの内容が下側に見切れて表示される場合があります。
回避方法
この問題は 2021J v3 (5.0.20213.159) で修正されました。
※修正版を適用しない場合の回避方法は以下の通りです。
DataGridTextColumnのVerticalAlignmentを"Center"に変更し、列に新しいCellContentStyleを追加します。
※修正版を適用しない場合の回避方法は以下の通りです。
DataGridTextColumnのVerticalAlignmentを"Center"に変更し、列に新しいCellContentStyleを追加します。
<c1:DataGridTextColumn
....
VerticalAlignment="Center"
....>
....
<c1:DataGridTextColumn.CellContentStyle>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Padding" Value="0,0,0,0" />
</Style>
</c1:DataGridTextColumn.CellContentStyle>
</c1:DataGridTextColumn>