单击每个列表视图项的按钮时修改文本块值

本文关键字:修改 文本 按钮 列表 视图 单击 | 更新日期: 2023-09-27 18:36:28

我的ListView有以下代码:

 <ListView  x:Name="listme">
 <ListView.ItemTemplate >
   <DataTemplate >
     <Grid>
       ...
      <Button Background="{Binding ButtonColor}"  x:Name="btnStar" 
Click="btnStar_Click" Tag={Binding}>
           <Image/>
          <TextBlock Text="{Binding Path=all_like}" x:Name="liketext" />
      </Button>
     </Grid>
   </DataTemplate >
 </ListView.ItemTemplate >
</ListView >
我有 2 个 ListviewItems,每个都有"BtnStar"按钮,每个

按钮都有一个"liketext"文本块,其中一个文本块只起作用,每个示例当我单击 ListViewItem1 的 btnStar 时,它会修改 ListViewItem2 的 TextBlock 值,当我单击 ListViewItem1 的 BtnStar 时,我无法修改 ListViewItem1 的文本块的文本,这是我的代码:

 ObservableCollection<Locals> Locals = new ObservableCollection<Locals>();
     public async void getListePerSearch()
    {
        try
        {
            UriString2 = "URL";
            var http = new HttpClient();
            http.MaxResponseContentBufferSize = Int32.MaxValue;
            var response = await http.GetStringAsync(UriString2);
            var rootObject1 = JsonConvert.DeserializeObject<NvBarberry.Models.RootObject>(response);
           foreach (var item in rootObject1.locals)
                {
                    Item listItem = new Item();
                    if (listItem.all_like == null)
                        {
                            listItem.all_like = "0";
                        }
                listme.ItemsSource = Locals;
   }
        private void Button_Click(object sender, RoutedEventArgs e)
                {
                    var btn = sender as Button;
                    var item = btn.Tag as Locals;
                    item.all_like = liketext.Text;
                    liketext.Text = (int.Parse(item.all_like) + 1).ToString();
                    }

当地人.cs:

public class Locals : INotifyPropertyChanged
{
    public int id_local { get; set; }
    public string all_like { get; set; }

    public event PropertyChangedEventHandler PropertyChanged;
    public void NotifyPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this,
                new PropertyChangedEventArgs(propertyName));
        }
    }
}

那么,当我单击每个列表视图项的 BtnStar 按钮时,如何修改文本块的值感谢您的帮助

单击每个列表视图项的按钮时修改文本块值

嗯。

首先,您需要在 xaml 应用中使用绑定方法。

你的类 局部变量 实现 INotifyPropertyChanged 但实现得很糟糕。请检查此示例:

public string someProperty {get;set;}
public string SomeProperty 
{
get
 {
   return someProperty;
 }
 set
 {
   someProperty =value;
   NotifyPropertyChanged("SomeProperty");
 }
}

在你的文本块中,你有文本={绑定某个属性}

您需要添加模式=双向

文本={绑定某些属性,模式= 双向}

最后在你的点击方法btnStar_Click

你需要做这样的事情:

var btn = sender as Button;
var local= btn.DataContext as Local;
local.SomeProperty= "my new value"

如果您在模型中正确实现了 INotifyPropertyChanged,您将在 UI 中看到更改。

就这样。

如果对您有用,请标记此答案!

此致敬意。