更改列表视图项中的颜色并删除项 UWP

Res*_*Res 3 xaml listview uwp

我会删除列表视图项目中带有按钮的项目,并使用列表视图项目中的另一个按钮更改椭圆的颜色。

班级产品代码:

class Product
{
    public string Name { get; set; }
    public double Price { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

xaml 主页代码:

<Page
x:Class="ListViewTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ListViewTest"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Loaded="Page_Loaded">

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <ListView x:Name="ListViewProducts" 
            ScrollViewer.HorizontalScrollBarVisibility="Disabled" 
            ScrollViewer.VerticalScrollBarVisibility="Auto"
            FontSize="18" 
            BorderThickness="0" 
            Width="600" 
            Height="800" 
            HorizontalAlignment="Center"
            VerticalAlignment="Center"
            ItemsSource="{Binding LineItems}">
        <ListView.ItemTemplate>
            <DataTemplate>
                <StackPanel Margin="10">
                    <Grid HorizontalAlignment="Left" VerticalAlignment="Center" Margin="5,0,0,0">
                        <Ellipse x:Name="EllipseColor" HorizontalAlignment="Left" Height="20" Stroke="Black" VerticalAlignment="Top" Width="20" StrokeThickness="1"/>
                    </Grid>
                    <TextBlock Text="{Binding Name}" Margin="5,0,0,0"/>
                    <TextBlock Text="{Binding Price}" Margin="5,0,0,0"/>
                    <Button x:Name="btnRemove" Click="btnRemove_Click" Height="20" Width="60" Margin="5"/>
                    <Button x:Name="btnChangeColor" Click="btnChangeColor_Click" Height="20" Width="60" Margin="5"/>
                </StackPanel>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>
</Grid>
Run Code Online (Sandbox Code Playgroud)

主页背后的代码:

public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
    }

    private void Page_Loaded(object sender, RoutedEventArgs e)
    {
        ObservableCollection<Product> _listProduct = new ObservableCollection<Product>();
        _listProduct = new ObservableCollection<Product>
        {
            new Product
            {
                Name = "Phone",
                Price = 100
            },
            new Product
            {
                Name = "TV",
                Price = 120
            },
            new Product
            {
                Name = "Computer",
                Price = 80
            },
            new Product
            {
                Name = "Laptop",
                Price = 250
            },
            new Product
            {
                Name = "Tablet",
                Price = 150
            },
            new Product
            {
                Name = "Monitor",
                Price = 200
            },
        };
        ListViewProducts.ItemsSource = _listProduct;
    }

    private void btnRemove_Click(object sender, RoutedEventArgs e)
    {
        // Code to remove item
    }

    private void btnChangeColor_Click(object sender, RoutedEventArgs e)
    {
        // Code to color EllipseColor
    }
}
Run Code Online (Sandbox Code Playgroud)

使用 btnRemove 我将删除列表视图项目,使用 btnChangeColor 我将 EllipseColor 的填充颜色为红色,在 btnChangeColor_Click 中我将项目的索引。

提前致谢。

Tas*_*key 5

在我看来,你有几个问题。首先是你ListView通过绑定到一个明显不存在的集合来设置你的源,以及在 C# 中设置它。您应该将其移动到使用适当的绑定。例如,在MainPage.xaml.cs

private ObservableCollection<Product> _products = new ObservableCollection<Product>();
public ObservableCollection<Product> Products { get => _products; set => _products = value; }
Run Code Online (Sandbox Code Playgroud)

然后绑定到它:

<ListView ItemsSource={x:Bind Products, Mode=OneWay} />
Run Code Online (Sandbox Code Playgroud)

然后,在 中btnRemove_Click,您可以从集合中删除该项目:

var product = (sender as Button).DataContext as Product;
Products.Remove(product);
Run Code Online (Sandbox Code Playgroud)

至于给 着色Ellipse,你真的不应该在 C# 中这样做。相反,您应该StatusProduct类上拥有一个属性,然后更改该属性。

首先,您需要确保您的财产更改了火灾通知。

public class Product : INotifyPropertyChanged
{
    private string _status;
    public string Status
    {
        get => _status;
        set
        {
            _status = value;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Status)));
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;
}
Run Code Online (Sandbox Code Playgroud)

然后更改属性。

var product = (sender as Button).DataContext as Product;
product.Status = "invalid";
Run Code Online (Sandbox Code Playgroud)

然后在您的 XAML 中,使用绑定转换器根据状态更改EllipseFill属性。例如

using System;
using Windows.UI;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Media;

public class StatusConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, string language) =>
        new SolidColorBrush(value.ToString() == "invalid" ? Colors.Red : Colors.Gray);

    public object ConvertBack(object value, Type targetType, object parameter, string language) => 
        throw new NotImplementedException();
}
Run Code Online (Sandbox Code Playgroud)

然后,您需要将转换器添加到您的资源中。

<Page...>
    <Page.Resources>
        <locationofyourconverter:StatusConverter x:Key="StatusConverter" />
    </Page.Resources>

    ...

    <Ellipse Fill={Binding Status, Mode=OneWay, Converter={StaticResource StatusConverter}} />
Run Code Online (Sandbox Code Playgroud)