5

我试图在 a 中插入一个超链接DataGrid并找到一种方法,以便RequestNavigate使用 MVVM 模式实现该行为。

到目前为止,我已经尝试了很多解决方案,但没有一个有效。请问你能帮帮我吗?

这是我的 xaml 代码:

<dgWPFCtrl:ExtDataGridTemplateColumn  Header="Link to XXX"  Width="*">
                    <dgWPFCtrl:ExtDataGridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <TextBlock >
                                <Hyperlink NavigateUri="{Binding Path=ID_HTTP_LINK}"
                                           >
                                    <TextBlock Text="{Binding Path=ID_HTTP_LINK}"/>
                                    <i:Interaction.Triggers>
                                        <i:EventTrigger EventName="RequestNavigate">
                                            <WPFCtrl:EventToCommand 
                                                PassEventArgsToCommand="True"
                                                Command="{Binding Path=OpenLinkCommand}" />
                                        </i:EventTrigger>
                                    </i:Interaction.Triggers>
                                </Hyperlink>
                            </TextBlock>
                        </DataTemplate>
                    </dgWPFCtrl:ExtDataGridTemplateColumn.CellTemplate>
                </dgWPFCtrl:ExtDataGridTemplateColumn>

并遵循相对ICommand发展:

//Command for open link
RelayCommand _openLinkCommand;
public ICommand OpenLinkCommand
{
    get
    {
        if (_openLinkCommand == null)
            _openLinkCommand = new RelayCommand(param => 
            {
                //Command Body ...
            });
        return _openLinkCommand;
    }
}

我哪里错了?没想到,ICommand甚至从未调用过!

我也尝试使用其他类型的事件(例如MouseEnter),但没有任何改变!

预先感谢您的贡献,

代比

4

1 回答 1

12

超链接的 DataContext 是由 DataGridRow 表示的对象,而不是您的 ViewModel。因此,您必须使用绑定方法来获取该 ViewModel(RelativeSource AncestorType 或 ElementName)。

ElementName(假设您的 DataGrid 名为“myDataGrid”)

Command="{Binding ElementName=myDataGrid, Path=DataContext.OpenLinkCommand}"

相对来源

Command="{Binding RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}, Path=DataContext.OpenLinkCommand}"
于 2013-03-04T15:00:54.543 回答