第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 Xamarin 中使用 ObervableCollection 的 ListView

在 Xamarin 中使用 ObervableCollection 的 ListView

C#
DIEA 2023-06-25 13:36:26
我想根據(jù)可用選項(xiàng)顯示按鈕,但在實(shí)現(xiàn)它時(shí)遇到了一些麻煩。如果有人可以看一下我的代碼,那就太好了。該系列很好,但沒有顯示任何按鈕。我已經(jīng)嘗試過(guò)以下操作:public ObservableCollection<Button> shownButtons { get; set; } = new ObservableCollection<Button>();private void ActionSelector(){Button button;            foreach (var serviceAction in basedata)            {                switch (serviceAction.ChangeType)                {                    case ServiceTodoChangeType.Accept:                        button = new Button()                        {                            //Command = AcceptServiceCommand,                            Text = Translations.Accept                        };                        shownButtons.Add(button);                        break;                    case ServiceTodoChangeType.ServicePause:                        button = new Button()                        {                            Command = BreakCommand,                            Text = Translations.ServicePause                        };                        shownButtons.Add(button);                        break;}}}XAML:<ListView ItemsSource="shownButtons">                        <ListView.ItemTemplate>                            <DataTemplate>                                <ViewCell>                                    <Button                                      Text="{Binding Text}"                                      Command="{Binding Command}">                                    </Button>                                </ViewCell>                            </DataTemplate>                        </ListView.ItemTemplate>                    </ListView>
查看完整描述

1 回答

?
郎朗坤

TA貢獻(xiàn)1921條經(jīng)驗(yàn) 獲得超9個(gè)贊

我收到錯(cuò)誤...


我忘記綁定源了。


使固定:


 <ListView ItemsSource="{Binding shownButtons}">

                            <ListView.ItemTemplate>

                                <DataTemplate>

                                    <ViewCell>

                                        <Button 

                                         Text="{Binding Text}" 

                                         Command="{Binding Command}">

                                        </Button>

                                    </ViewCell>

                                </DataTemplate>

                            </ListView.ItemTemplate>

                        </ListView>


查看完整回答
反對(duì) 回復(fù) 2023-06-25
  • 1 回答
  • 0 關(guān)注
  • 136 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)