我制作了一个非常基本的DataGrid来测试它,但我立即遇到了这个问题,点击一个复选框对前2次点击没有任何作用。看起来只需点击一下就可以点击它所在的任何内容,再点击一次以进行聚焦,然后才能通过第三次点击实际检查它。
这是我正在使用btw(https://xceed.com/xceed-datagrid-for-wpf/)的DataGrid。
XAML:
<UserControl.Resources>
<DataTemplate x:Key="ItemTemplate">
<StackPanel>
<TextBlock Text="{Binding Property1}"/>
<CheckBox IsChecked="{Binding Property2}"/>
</StackPanel>
</DataTemplate>
</UserControl.Resources>
<Grid>
<xcdg:DataGridControl ItemTemplate="{DynamicResource ItemTemplate}"
ItemsSource="{Binding Collection, Source={StaticResource SampleDataSource1}}"
UpdateSourceTrigger="CellContentChanged"
Margin="10">
</xcdg:DataGridControl>
</Grid>
“SampleDataSource1”只是自动生成的,但无论如何它都在这里:
<SampleDataSource1:SampleDataSource1 xmlns:SampleDataSource1="clr-namespace:Expression.Blend.SampleData.SampleDataSource1">
<SampleDataSource1:SampleDataSource1.Collection>
<SampleDataSource1:Item Property1="Cras aenean" Property2="True"/>
<SampleDataSource1:Item Property1="Class mauris aliquam" Property2="False"/>
<SampleDataSource1:Item Property1="Maecenas integer duis curae" Property2="True"/>
<SampleDataSource1:Item Property1="Praesent nullam nunc" Property2="False"/>
<SampleDataSource1:Item Property1="Nam quisque" Property2="True"/>
<SampleDataSource1:Item Property1="Sed accumsan" Property2="False"/>
<SampleDataSource1:Item Property1="Aptent vivamus aliquam aliquet" Property2="True"/>
<SampleDataSource1:Item Property1="Blandit donec dis" Property2="False"/>
<SampleDataSource1:Item Property1="Amet commodo" Property2="True"/>
<SampleDataSource1:Item Property1="Ante conubia" Property2="False"/>
</SampleDataSource1:SampleDataSource1.Collection>
答案 0 :(得分:0)
添加它(在xaml中):
DataGridCell.GotFocus="DataGrid_GotFocus"
并在后面的代码中添加:
private void DataGrid_GotFocus(object sender, RoutedEventArgs e)
{
// Lookup for the source to be DataGridCell
if (e.OriginalSource.GetType() == typeof(DataGridCell))
{
// Starts the Edit on the row;
DataGrid grd = (DataGrid)sender;
grd.BeginEdit(e);
}
}
答案 1 :(得分:0)
所以,如果你很幸运,你会在你的设计窗口看到一个巨大的闪光,上面有一个按钮,上面写着:“显示配置窗口”(使用后它似乎永远消失了)。有了这个,我生成了一些XAML来解决这个问题:
<xcdg:DataGridControl ItemsSource="{Binding Source={StaticResource cvsSongs}}"
NavigationBehavior="RowOrCell"
CellEditorDisplayConditions="RowIsBeingEdited, MouseOverCell,
MouseOverRow, RowIsCurrent, CellIsCurrent"
EditTriggers="BeginEditCommand, ClickOnCurrentCell, SingleClick,
CellIsCurrent, ActivationGesture, RowIsCurrent"/>
如果您知道如何再次显示该窗口,请随时发表评论。
配置窗口信息:Xceed documentation
还有其他一些配置窗口问题的人。可能适合你:xceed forums