gpt4 book ai didi

listview - 在单击按钮时在 ListView 中传递数据

转载 作者:行者123 更新时间:2023-12-02 20:23:47 26 4
gpt4 key购买 nike

我想将所选项目的数据传递到另一个页面。以下代码按预期工作。

private void inProgress_ItemSelected(object sender, SelectedItemChangedEventArgs e)
{
var surveyTapped = (SurveyList)e.SelectedItem;
Navigation.PushAsync(new StartSurvey(surveyTapped.vchar_Title, surveyTapped.int_SurveyID, surveyTapped.int_UserSurveyID));
}

但我在 ListView 中有 2 个按钮,我必须添加点击这些按钮

My UI

private void resume_ButtonClicked(object sender, EventArgs e)
{
//How and what should i implement in order to pass the data
}

最佳答案

绑定(bind)是这里的救星。

如果您要使用面向事件的方法,请尝试以下代码:

    private void resume_ButtonClicked(object sender, EventArgs e)
{

var selectedItem = (SurveyList)LISTVIEW.SelectedItem; // where LISTVIEW is the name of the listview.
//Other actions
}

关于listview - 在单击按钮时在 ListView 中传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50566710/

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