如何在我的组合框ItemTemplate中有一个可点击按钮?

时间:2011-01-26 08:56:28

标签: wpf combobox datatemplate items

这是我到目前为止所做的:

<dxe:ComboBoxEdit Name="cboUserCustomReports"
                      Width="300" Height="Auto"
                      Margin="0,5,0,5"
                      ItemsSource="{Binding Path=UserReportProfileList,Mode=OneWay,UpdateSourceTrigger=PropertyChanged}"
                      EditValue="{Binding Path=UserReportProfileID,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
                      ValueMember="UserReportProfileID"
                      DisplayMember="ReportName"
                      PopupClosed="cboUserCustomReports_PopupClosed">
            <dxe:ComboBoxEdit.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="100*"/>
                            <ColumnDefinition Width="20"/>
                        </Grid.ColumnDefinitions>
                        <TextBlock Grid.Column="0"
                                   Text="{Binding ReportName, Mode=Default}" 
                                   VerticalAlignment="Stretch" HorizontalAlignment="Left"/>
                        <Button Name="btnDelete" 
                                Grid.Column="1"
                                Width="20" Height="20"
                                VerticalAlignment="Center" HorizontalAlignment="Right"
                                Click="btnDelete_Click">
                            <Button.Template>
                                <ControlTemplate>
                                    <Image Source="/RMSCommon;component/Resources/Delete.ico"></Image>
                                </ControlTemplate>
                            </Button.Template>
                        </Button>
                    </Grid>
                </DataTemplate>
            </dxe:ComboBoxEdit.ItemTemplate>
        </dxe:ComboBoxEdit>

首先,我希望这两列是独立的。用户必须能够选择或删除该项目。

其次,我想让ItemTemplate中的按钮可以点击。

我需要添加什么才能获得此行为?

这就是目前的样子:

enter image description here

2 个答案:

答案 0 :(得分:2)

点击
我假设您的按钮是可点击的,并且您想知道如何处理点击事件。对吗?
对于click-handler,添加以下代码:

private void btnDelete_Click(object sender, RoutedEventArgs e) {
    FrameworkElement fe = sender as FrameworkElement;
    if(null == fe){
        return;
    }
    UserReportProfile userReportProfile = fe.DataContext as UserReportProfile;
    if (null == userReportProfile) {
        return;
    }
    // Do here your deletion-operation

}

我假设您的item-class名为UserReportProfile。否则,相应地更改声明的类型。

<强>布局
对于对齐,将以下声明添加到ComboBox:

HorizontalContentAlignment="Stretch" 

这为您的DataTemplate-Grid提供了全宽度,您可以根据需要布置项目。

<dxe:ComboBoxEdit Name="cboUserCustomReports"                         
      HorizontalContentAlignment="Stretch"            
      Width="300" Height="Auto"                         
      Margin="0,5,0,5"   
      ...>

答案 1 :(得分:1)

你的问题不够明确。但我想你想在你的组合框中垂直对齐 text images 。如果是这样,那么你需要做的就是:

<Grid.ColumnDefinitions>
   <ColumnDefinition Width="*"/>
   <ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>

我认为您的商品已经可以点击了!