gpt4 book ai didi

c# - 单击更改 ViewCell 元素

转载 作者:行者123 更新时间:2023-11-29 00:33:46 25 4
gpt4 key购买 nike

我建立了一个List<>项目对象的数量,这些对象被用作 ItemsSourceListView .在我的 ListView 上 ItemSelected事件,我试图更改该特定项目的元素之一。原始值与对象绑定(bind)。

请考虑以下示例:

itemClass.cs

class itemClass
{
public itemClass()
{
}
public string valueIWantToChange {get; set;}
}

MyPage.cs

public MyPage()
{
InitializeComponent();
List<itemClass> listOfItems= new List<itemClass>();
itemClass item1= new itemClass { valueIWantToChange = "UnClicked"};
listOfItems.Add(item1);
BindingContext = this;
lstView.ItemsSource = listOfItems;

lstView.ItemSelected += (sender, e) =>
{
if (e.SelectedItem == null)
{
return;
}

// The below does nothing but highlights what I am trying to achieve
((itemClass)((ListView)sender).SelectedItem).valueIWantToChange = "Clicked" ;

((ListView)sender).SelectedItem = null;
};
}

我的 XAML

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:myProject="clr-namespace:myProject"
x:Class="myProject.MyPage">

<StackLayout>
<ListView x:Name="lstView">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Padding="0" Orientation="Vertical" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Label Text="{Binding valueIWantToChange }" TextColor="Black" FontSize="16" VerticalOptions="Center" HorizontalOptions="Center" Margin="5,5,5,5"/>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>

</ContentPage>

我尝试使用绑定(bind)命令和 PropertyChangedEventHandler但没有成功。对此的任何帮助将不胜感激。

编辑

我尝试在应用程序的其他地方以类似的方式使用 PropertyChangedEventHandlers,请参见下文:

    public double FontXLarge
{
set
{
someFontsize = value;
OnPropertyChanged("FontXLarge");
}
get
{
someFontsize = scalableFont(10);
return someFontsize;
}
}

protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}

上面允许我将字体大小绑定(bind)到该缩放字体,但是如果我对字符串使用类似的东西,它不会影响 ListView 中的所有项目吗?

最佳答案

我认为实现您想要的最好方法是使用带有 INotifyPropertyChangedViewModel。如果你在谷歌上搜索一下,你可以找到很多例子。通用基类的一个很好的链接是 this .

如果您找到所需的一切,请告诉我。

关于c# - 单击更改 ViewCell 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41118851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com