当列表框被选中时启用/禁用按钮

本文关键字:启用 按钮 列表 | 更新日期: 2023-09-27 18:06:09

我有一个ListBox

<ListBox Background="WhiteSmoke"
         Name="LstComponents"
         ItemsSource="{Binding}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding ComponentID}" />
                <TextBlock Text=" - " />
                <TextBlock Text="{Binding ComponentName}" />
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

和几个按钮

<Button Content="Add New Components"
              Name="BtnAdd"
              Margin="5"
              Click="BtnAdd_Click" />
<Button Content="Update Components"
              Name="BtnUpdate"
              Grid.Column="1"
              Margin="5"
              Click="BtnUpdate_Click" />
<Button Content="Delete Components"
              Grid.Column="2"
              Name="BtnDelete"
              Margin="5"
              Click="BtnDelete_Click" />

现在我希望更新和删除按钮被禁用时,它被加载,而它应该启用,如果列表项在ListBox中被选中。

我不想为它写代码。请建议?如何在XAML

当列表框被选中时启用/禁用按钮

中完成此任务?

可以使用

IsEnabled="{Binding ElementName=ListBoxName, Path=SelectedItems.Count}"