我在鼠标右键单击WPF数据网格上打开一个带有ShowDialog()的无边框窗口。目的是让用户有机会将所选项目添加到列表中。当对话框窗口打开时,DataGrid中的所选项将松开所选的“视觉效果”(在本例中为默认的蓝色高亮显示),直到对话框关闭。我如何解决这个问题,因此用户仍然可以看到他们所选择的内容。
打开对话框的代码=
private void MusicLibrary_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
{
Point mousePoint = this.PointToScreen(Mouse.GetPosition(this));
PlayListRClick option = new PlayListRClick();
option.WindowStartupLocation = System.Windows.WindowStartupLocation.Manual;
option.Height = 150;
option.Width = 100;
option.Left = mousePoint.X;
option.Top = mousePoint.Y;
option.ShowDialog();
//Get the selected option and add itmes to playlist as needed
switch (option.choice)
{
case RightClickChoice.AddToPlayList:
IList Items = MusicLibrary.SelectedItems;
List<MyAlbum> albums = Items.Cast<MyAlbum>().ToList();
foreach (MyAlbum a in albums)
{
PlayListOb.Add(a);
}
break;
}
}
答案 0 :(得分:3)
DataGrid
仅在用户焦点时突出显示蓝色,否则使用不同的画笔(通常为LightGray),因此当您打开对话框时,DataGrid
会失去焦点,而“蓝色”画笔则会除去。
当DataGrid
聚焦时,它使用SystemColors.HighlightTextBrushKey
,而当未聚焦时,它使用SystemColors.InactiveSelectionHighlightBrushKey
因此,您可以尝试将SystemColors.InactiveSelectionHighlightBrushKey
设置为SystemColors.HighlightColor
,这会在您打开对话框时保持蓝色。
示例:
<DataGrid>
<DataGrid.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}" Color="{x:Static SystemColors.HighlightColor}"/>
</DataGrid.Resources>
</DataGrid>
对于 .NET4.0及更低版本,您可能必须使用SystemColors.ControlBrushKey
代替SystemColors.InactiveSelectionHighlightBrushKey
<DataGrid>
<DataGrid.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="{x:Static SystemColors.HighlightColor}"/>
</DataGrid.Resources>
</DataGrid>