Tag: WPF/DataGrid/スタイル

目次

参考になるスタイル

Tips

セルのスタイルを適用した上でDataGridTextColumnを右寄せにする

※次のようにCellStyleを変更すると、その列だけデフォルトのスタイルに戻ってしまうのでだめ。

                <DataGridTextColumn Header="サイズ">
                    <DataGridTextColumn.CellStyle>
                        <Style TargetType="{x:Type DataGridCell}">
                            <Setter Property="HorizontalAlignment" Value="Right"/>
                        </Style>
                    </DataGridTextColumn.CellStyle>

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS