将 Stepper 值绑定到相应的列表视图项的参数 - Xamarin.forms

Binding Stepper value to the corresponding listview item's parameter - Xamarin.forms

我将步进器放在列表视图上,因此每条记录都有一个步进器。我想将步进器 onchanged 值绑定到相应的对象参数值之一。因此,每个列出的记录的参数都可以通过相应的步进器进行更改。 有可能这样做吗? 这是列表视图:

<ListView x:Name="TempMenuListView" HasUnevenRows="true" Grid.Row="2" SeparatorColor="Black" >
        <ListView.ItemTemplate>
            <DataTemplate>
                <ViewCell>
                    <Grid  Padding="10">
                        <Grid.RowDefinitions>
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="Auto" />
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="*"/>
                            <ColumnDefinition Width="*"/>
                        </Grid.ColumnDefinitions>
                        <Label Text="{Binding PiattoTipo}" Grid.Row="0" Grid.Column="0" TextColor="Black" />
                        <Label Text="{Binding Piatto}" Grid.Row="0" Grid.Column="1" TextColor="Black" />
                        <Label x:Name="numeroPiattiLabel" Text="{Binding NumeroPiatti}" Grid.Row="0" Grid.Column="2" TextColor="Black" />
                        <Stepper x:Name="stepper" Maximum="20" ValueChanged="OnStepperValueChanged"/>

                    </Grid>
                </ViewCell>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>

这是 ListView 数据的 class:

[Table("TempMenu")]
public class TempMenu
{
    [PrimaryKey, AutoIncrement]
    public int Id { get; set; }
    public DateTime Date { get; set; }
    public int TavoloNo { get; set; }
    public string PiattoTipo { get; set; }
    public string Piatto { get; set; }
    public int NumeroPiatti { get; set; }
}

一个空的 OnStepperValueChanged 方法:

private void OnStepperValueChanged(object sender, ValueChangedEventArgs e)
    {

    }

我需要步进器来改变可观的 NumeroPiatti 值。

首先,我建议您对您的实体 (Table class) 和将用于显示某些内容的模型进行 分离在您的页面中。它会导致编写更多代码,但它更干净、更易于维护,尤其是如果您想在此模型中实现 INotifyPropertyChanged

如果您想遵循 MVVM,请确保您的模型实现了 INotifyPropertyChanged 您也可以制作一些基础模型或使用 Fody 删除一些样板代码。

其余部分与您在上一条评论中提到的相同,您可以通过这种方式使用 Stepper 控件:

//... rest of your code XAML
<Stepper x:Name="stepper" Maximum="20" Value={Binding SomePropertyInModel} />
//... rest of your code XAML

祝您编码顺利!