在设计器wpf DataGrid DataGridTemplateColumn列中预览

时间:2018-01-18 13:23:13

标签: c# wpf

有没有办法在XAML设计器中预览DataGridTemplateColumn的外观?

示例:

<DataGridTemplateColumn>
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <Button Margin="2" BorderThickness="0" Background="Transparent">
                <Button.Content>
                    <StackPanel Orientation="Horizontal">
                        <Image Source="/WpfImages;component/images/16x16/wheels.png"
                                Width="16" Height="16" ToolTip="Show wheels" />
                    </StackPanel>
                </Button.Content>
            </Button>
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>

1 个答案:

答案 0 :(得分:1)

使用绑定到特定于设计时的ViewModel的设计时数据上下文,在您对UI进行编码时,在IDE中显示数据。

MSDN上有一篇非常全面的文章:(clicky!)