当您在CellEditingTemplate中使用组合框时,单元格右侧会显示一个下拉箭头。当您使用日期选择器时,单元格的右侧会显示一个小日历。
创建CellEditingTemplate时,如何控制此区域中显示的内容?如果您使用自定义控件并希望在此区域中显示图标,该怎么做?
答案 0 :(得分:1)
您应该在自定义用户控件中添加此图标。
示例:
让我们说我们有简单的类人物:
class Person
{
public int ID { get; set; }
public string Name { get; set; }
}
我们想要创建自定义控件来编辑人名。
1)我们必须在我们的应用中添加图标作为资源(Build Action = Resource
)。
在我的示例中,我创建了文件夹Images并将图标放在那里" user.png"。
2)在下一步中,我们创建自定义控件" NameUserControl":
<UserControl x:Class="WpfApplicationDataGrid.NameUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="30" />
</Grid.ColumnDefinitions>
<TextBox Text="{Binding Path=Name}" />
<Image Source="/Images/user.png" Grid.Column="1" />
</Grid>
</UserControl>
3)现在我们可以在CellEditingTemplate
中使用新的自定义用户控件:
<DataGrid ItemsSource="{Binding}" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="ID" Binding="{Binding ID}" />
<DataGridTemplateColumn Header="Name">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<local:NameUserControl />
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
结果: