0

これらのコードを使用して、データ プレビューをツールヒントとして表示します。

private void dataGrid1_RowLoaded(object sender, RowLoadedEventArgs e)
    {
        var row = e.Row as GridViewRow;
        if (row != null)
        {
            var textBlock = new TextBlock();
            textBlock.Text = "...";
            textBlock.DataContext = row;

            var toolTip = new ToolTip()
            {
                Content = textBlock,
            };

            toolTip.Opened += dataGrid1_ToolTipOpening;
            ToolTipService.SetToolTip(row, toolTip);
        }

    }

    private void dataGrid1_ToolTipOpening(object sender, RoutedEventArgs e)
    {
         GridViewRow row = null;

            var tooltip = e.OriginalSource as ToolTip;
            if (tooltip.Content is UCPreview)
            {
                return;
            }
            else if (tooltip.Content is TextBlock)
            {
                var content = tooltip.Content as TextBlock;
                row = content.DataContext as GridViewRow;
            }
            var gridViewRow = row.Item as DataRowView;
            if (gridViewRow != null)
            {
               //initial UCPreview                    
            }           
    }
}

ここで、マウスが行のヘッダーにある場合にのみツールヒントを表示したいと考えています。残念ながら、GridViewRow には Header プロパティがありません。どうすれば問題を解決できますか?

4

1 に答える 1

0

あなたの質問を誤解していない場合は、DataGridColumnHeader Style のツールチップを

<Window.Resources>
    <Style TargetType="{x:Type DataGridColumnHeader}" x:Key="dghStyle">
        <Setter Property="ToolTip" Value="Red"/>
    </Style>
</Window.Resources>
<Grid>
    <DataGrid ColumnHeaderStyle="{StaticResource dghStyle}">
        <DataGrid.Columns>
            <DataGridCheckBoxColumn/>
        </DataGrid.Columns>
    </DataGrid>
</Grid>

これが役立つことを願っています。これは、必要に応じて ToolTop を設定できる回避策にすぎません。

于 2012-07-15T12:29:53.163 に答える