0

在 WPF 数据网格中,我想在每行的每个第一个单元格中显示一个按钮。它将在弹出窗口中显示该行 ID (contactId)。到目前为止,我有这个代码。

弹出窗口不显示。以及如何在该行中获取 ContactId ?

谢谢

<DataGrid AutoGenerateColumns="True" IsReadOnly="False"  Height="186" HorizontalAlignment="Left" Margin="12,41,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="479" >
            <DataGrid.Columns>
                <DataGridTemplateColumn>
                    <DataGridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <Button Name="EditBtn" >Edit</Button>
                        </DataTemplate>
                    </DataGridTemplateColumn.CellTemplate>
                </DataGridTemplateColumn>
            </DataGrid.Columns>
        </DataGrid>

        <Popup IsOpen="{Binding Click, ElementName=EditBtn}" Margin="0,0,-101,0">
            <Border Background="LightYellow">
                <TextBlock> I'M the popup</TextBlock>
            </Border>
        </Popup>
4

1 回答 1

0

You can set the Button's Tag Property to the ContactID

<Button Name="EditBtn" Tag={Binding ...} >Edit</Button>
于 2012-08-01T14:56:10.470 回答