1

我遇到的问题是我的 trello 板不会从我的以下代码更新,将“CurrentCard”设置为我的 trello 板上的列表 4。我查看了Manatee.Trello Moving Cards但我不确定我是否在关注。

var CurrentCard = Trelloboard.Lists[index].Cards[CardIndex];
CurrentCard.Position = 4;
4

1 回答 1

0
            var otherList  = Trelloboard.Lists.Last();//The List to which you want to move the card to.

            var CurrentCard = Trelloboard.Lists[index].Cards[0];// The current card you want to move

            CurrentCard.List = otherList;//applying the "otherList" to the "CurrentCard"'s List attribute.
于 2018-04-18T13:57:49.477 回答