如何将对象参数传递给Xamarin.Forms中的Entry事件?



我已经实现了绑定到ObservableCollectionListView,并且我需要在输入字段更改时更新每个项。我正在使用完成的事件,但它只将条目值传递给完成的事件函数,我不知道我正在编辑什么对象。

是否有办法将对象参数传递给这些条目事件,以便我可以更新正确的对象?或者有更好的方法来做到这一点?

更新

这是我的列表视图代码

<ListView 
            x:Name="DrawReturnList" 
            RowHeight="65" 
            BackgroundColor="#ffffff"
            CachingStrategy="RecycleElement" 
            ItemsSource="{Binding SCSDraw}"
            ItemSelected = "OnItemTapped"   
            IsPullToRefreshEnabled="false"
            Margin="0, -10, 0, 0">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <ViewCell>
                        <StackLayout VerticalOptions="FillAndExpand"
                                     HorizontalOptions="FillAndExpand"
                                     Orientation="Vertical"
                                     Padding="10">
                            <StackLayout Orientation="Horizontal">
                              <StackLayout HorizontalOptions="FillAndExpand" WidthRequest="90" Padding="0, 10, 0, 0">
                                <Label Text="{Binding PubDateShort3}" FontSize="18"/>
                              </StackLayout>
                              <StackLayout HorizontalOptions="FillAndExpand" Orientation="Horizontal">
                                    <Grid HorizontalOptions="FillAndExpand" ColumnSpacing="0" RowSpacing="0">
                                      <Grid.RowDefinitions>
                                        <RowDefinition Height="*" />
                                      </Grid.RowDefinitions>
                                      <Grid.ColumnDefinitions>
                                        <ColumnDefinition Width="*" />
                                        <ColumnDefinition Width="*" />
                                        <ColumnDefinition Width="*" />
                                      </Grid.ColumnDefinitions>
                                      <StackLayout Grid.Row="0" Grid.Column="0" Padding="0, 10, 0, 0">
                                        <Label Text="{Binding InitialDraw}" FontSize="18"/>
                                      </StackLayout>
                                      <StackLayout  Grid.Row="0" Grid.Column="1">
                                            <Entry IsEnabled="{Binding ACLockFL, Converter={StaticResource not}}" Keyboard="Numeric" Placeholder="Draw" Text="{Binding Draw, Mode=TwoWay}" VerticalOptions="Center"/>
                                      </StackLayout> <!-- end Draw -->
                                      <StackLayout Grid.Row="0" Grid.Column="2">
                                            <Entry IsEnabled="{Binding ACLockFL, Converter={StaticResource not}}" Keyboard="Numeric" Placeholder="Returns" Text="{Binding Returns, Mode=TwoWay}" VerticalOptions="Center"/>
                                      </StackLayout> <!-- end Return -->
                                    </Grid>

                              </StackLayout>
                            </StackLayout><!-- end input group -->

                        </StackLayout> <!-- end Draw & Return Section-->
                    </ViewCell>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView> <!-- end list view -->

它被绑定到我的ViewModel中的Observable Collection。

我需要做的是能够用其各自的条目编辑每个单独的列表项,并将其保存到其各自的对象。我尝试在条目上完成事件,但我不能传递参数给这个。我该如何处理这个问题?

更新

模型
using System;
using System.ComponentModel;
using Collector.Helpers;
namespace Collector
{
    public class AC_SCSDraw : EntityData, INotifyPropertyChanged
    {   
    private int draw;
    private int returns;
    public decimal CarrierID { get; set; }
    public decimal RspID { get; set; }
    public string RspName { get; set; }
    public decimal SCSDrawID { get; set; }
    public decimal PubID { get; set; }
    public string PubDesc { get; set; }
    public string WeekDay { get; set; }
    public DateTime PubDate { get; set; }
    public string PubDateShort3 { get; set; }
    public int Draw
    {
        get { return draw; }
        set
        {
            draw = value;
            OnPropertyChange("Draw");
        }
    }
    public int Returns 
    {
        get { return returns; }
        set
        {
            returns = value;
            OnPropertyChange("Returns");
        }
    }
    public int InitialDraw { get; set; }
    public bool ACLockFL { get; set; }

    public event PropertyChangedEventHandler PropertyChanged;
    protected void OnPropertyChange(string name)
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(name));
    }
}
}

视图模型

ObservableCollection<AC_SCSDraw> scsDraw = new ObservableCollection<AC_SCSDraw>();
    public ObservableCollection<AC_SCSDraw> SCSDraw
    {
        get { return scsDraw; }
        set
        {
            scsDraw = value;
            OnPropertyChanged("SCSDraw");
        }
    }
public event PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged(string propertyName)
    {
        var changed = PropertyChanged;
        if (changed != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }

如果我没理解错的话,您应该是希望更改条目中的值,并根据底层对象保存更改。

检测条目更改的一种方法是,您需要检查项目模型属性中的更改(在INotifyPropertyChanged的帮助下)。要么直接在Set -部分中,要么注册项目模型的OnPropertyChanged -事件。

以下是属性Draw(第一项) 的示例
public string Draw
{
    get { return _draw; }
    set
    {
        if (value == _draw) return;
        _draw= value;
        RaisePropertyChanged("Draw");
        // Here you can save your object
    }
}
private string _draw;

缺点是,在条目中的每次字符更改时都要保存对象(这不是很顺利)。

我的建议是,你可以添加一个带有命令的"保存"按钮(在这个命令中,你可以发送一个额外的command-property ->你的项目)

或者实现一个单独的页面来修改每个条目(这是从用户界面到点的最清晰的方式)。但这取决于你的用例。

绑定listview的selecteditem属性,并在你选择使用的条目事件完成时引用它。

<ListView
    x:Name="myListview"
    HorizontalOptions="Fill"
    VerticalOptions="FillAndExpand"
    ItemsSource="{Binding MyObservableCollection}"
    SelectedItem="{Binding MySelectedItem}"       
>

相关内容

  • 没有找到相关文章

最新更新