基于组合框选择填充wpf列表框

uyhoqukh  于 2021-07-24  发布在  Java
关注(0)|答案(2)|浏览(295)

我正在尝试使用来自基于组合框选择的sql存储过程的数据填充wpf列表框。我已经让组合框像它应该的那样工作,但是我不能让列表框显示任何数据。我的命名可能有点奇怪,但可以这样想:combobox从sql获取所有食谱,listbox需要根据用户从该combobox中的选择显示一个配料列表及其数量。api和存储过程(…getall()用于combobox,getbyrationid()用于listbox…)工作正常,因为我可以在api中使用swagger检索正确的数据,并且可以在ui中填充combobox和RationalId textblock,但我无法使listbox显示任何数据。我仍然是新的编程,我下面的教程等,我似乎找不到任何具体说明我的情况。我想我遗漏了什么。我添加了前面提到的textblock只是为了显示rationid,这是从sql中获取正确数据所需要的,作为一个测试,只是为了确保id通过了…它确实通过了。
这是xaml。。。

<StackPanel Grid.Column="1" Margin="50" Orientation="Vertical">
        <ComboBox x:Name="FeedGroup" MinWidth="300" MinHeight="50"
                  SelectedItem="{Binding SelectedFeedGroup}">
            <ComboBox.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding FeedGroupName}" />
                </DataTemplate>
            </ComboBox.ItemTemplate>
        </ComboBox>

        <TextBlock x:Name="SelectedFeedGroup_RationId" Height="81"/>

        <ListBox x:Name="FeedGroupRation" MinHeight="200" Padding="20" ItemsSource="{Binding SelectedFeedGroupRation}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Margin="10" HorizontalAlignment="Center">
                        <TextBlock Text="{Binding CommodityName}" FontSize="20" FontWeight="Bold"
                            VerticalAlignment="Center" HorizontalAlignment="Center"/>
                        <TextBlock Text="{Binding CommodityPercentage}" FontSize="16" VerticalAlignment="Center"/>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox> 
    </StackPanel>

这是viewmodel类。。。

public class FeedGroupPageViewModel : Screen
{

    IFeedGroupEndPoint _feedGroupEndPoint;
    IFeedGroupRationEndPoint _feedGroupRationEndPoint;
    IMapper _mapper;
    private readonly StatusInfoViewModel _status;
    private readonly IWindowManager _window;

    public FeedGroupPageViewModel(IFeedGroupEndPoint feedGroupEndPoint,
            IFeedGroupRationEndPoint feedGroupRationEndpoint,
            IConfigHelper configHelper,
            IMapper mapper,
            StatusInfoViewModel status,
            IWindowManager window)
    {
        _feedGroupEndPoint = feedGroupEndPoint;
        _feedGroupRationEndPoint = feedGroupRationEndpoint;
        _configHelper = configHelper;
        _mapper = mapper;
        _status = status;
        _window = window;
    }

    protected override async void OnViewLoaded(object view)
    {
        base.OnViewLoaded(view);
        try
        {
            await LoadFeedGroup();
        }
        catch (Exception ex)
        {

        }
    }

    private async Task LoadFeedGroup()
    {
        var FeedGroupList = await _feedGroupEndPoint.GetAll();
        var feedGroup = _mapper.Map<List<FeedGroupDisplayModel>>(FeedGroupList);
        FeedGroup = new BindableCollection<FeedGroupDisplayModel>(feedGroup);
    }

    private BindableCollection<FeedGroupDisplayModel> _feedGroup;
    public BindableCollection<FeedGroupDisplayModel> FeedGroup
    {
        get { return _feedGroup; }
        set
        {
            _feedGroup = value;
            NotifyOfPropertyChange(() => FeedGroup);
        }
    }

    private FeedGroupDisplayModel _selectedFeedGroup;
    public FeedGroupDisplayModel SelectedFeedGroup
    {
        get { return _selectedFeedGroup; }
        set
        {
            _selectedFeedGroup = value;
            NotifyOfPropertyChange(() => SelectedFeedGroup);
        }
    }

    private BindableCollection<FeedGroupRationModel> _feedGroupRation;
    public BindableCollection<FeedGroupRationModel> FeedGroupRation
    {
        get { return _feedGroupRation; }

        set
        {
            _feedGroupRation = value;
            NotifyOfPropertyChange(() => FeedGroupRation);
        }
    }

    private BindableCollection<FeedGroupRationModel> _selectedFeedGroupRation;
    public BindableCollection<FeedGroupRationModel> SelectedFeedGroupRation
    {
        get { return _selectedFeedGroupRation; }
        set
        {
            _selectedFeedGroupRation = value;
            NotifyOfPropertyChange(() => SelectedFeedGroupRation);
        }
    }
}

下面是模型类

public class FeedGroupDisplayModel : INotifyPropertyChanged
{
    public int Id { get; set; }
    public string UserId { get; set; }
    public string FeedGroupName { get; set; }
    public DateTime CreateDate { get; set; }
    public DateTime LastModified { get; set; }
    public int RationId { get; set; }

    public event PropertyChangedEventHandler PropertyChanged;
    public void CallPropertyChanged(string propertyName)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
}

public class FeedGroupRationModel : INotifyPropertyChanged
{
    public int Id { get; set; }
    public string UserId { get; set; }
    public int RationId { get; set; }
    public string RationName { get; set; }
    public int CommodityId { get; set; }
    public string CommodityName { get; set; }
    public int CommodityPercentage { get; set; }

    public event PropertyChangedEventHandler PropertyChanged;
    public void CallPropertyChanged(string propertyName)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
}

这里是我的端点类

public class FeedGroupEndPoint : IFeedGroupEndPoint
{
    private IAPIHelper _apiHelper;

    public FeedGroupEndPoint(IAPIHelper apiHelper)
    {
        _apiHelper = apiHelper;
    }

    public async Task<List<FeedGroupModel>> GetAll()
    {
        using (HttpResponseMessage response = await _apiHelper.ApiClient.GetAsync("/api/FeedGroup"))
        {
            if (response.IsSuccessStatusCode)
            {
                var result = await response.Content.ReadAsAsync<List<FeedGroupModel>>();
                return result;
            }
            else
            {
                throw new Exception(response.ReasonPhrase);
            }
        }
    }
}

public class FeedGroupRationEndPoint : IFeedGroupRationEndPoint
{
    private IAPIHelper _apiHelper;

    public FeedGroupRationEndPoint(IAPIHelper apiHelper)
    {
        _apiHelper = apiHelper;
    }
    public async Task<List<FeedGroupRationModel>> GetRationById()
    {
        using (HttpResponseMessage response = await _apiHelper.ApiClient.GetAsync("/api/FeedGroup"))
        {
            if (response.IsSuccessStatusCode)
            {
                var result = await response.Content.ReadAsAsync<List<FeedGroupRationModel>>();
                return result;
            }
            else
            {
                throw new Exception(response.ReasonPhrase);
            }
        }
    }
}

如果需要,我可以添加更多信息。我已经在这方面工作了很长一段时间了,我只是没有主意。任何帮助都将不胜感激!提前谢谢!!

whlutmcx

whlutmcx1#

你好像没有设定 FeedGroupRation 那就是 ListBox 绑定到某个地方。
我猜您希望在 SelectedFeedGroup 属性已设置。然后可以将事件处理程序连接到 PropertyChanged 事件或重写 NotifyOfPropertyChange 方法。像这样:

public override async void NotifyOfPropertyChange([CallerMemberName] string propertyName = null)
{
    base.NotifyOfPropertyChange(propertyName);
    if (propertyName == nameof(FeedGroup))
    {
        //get the items...
        var results = await ...;
        //set the source property
        FeedGroupRation = results;
    }

}
64jmpszr

64jmpszr2#

正如@michal davis评论所说,我缺少加载定量配给的方法,所以我添加了loadfeedgroupration()。。。

private async Task LoadFeedGroupRation()
    {
        var _feedGroupRation = await _feedGroupRationEndPoint.GetRation();
        var feedGroupRation = _mapper.Map<List<FeedGroupRationDisplayModel>> 
        (_feedGroupPenList);
        FeedGroupRationList = new BindableCollection<FeedGroupRationDisplayModel> 
        (feedGroupRation);
    }

同样基于@eldhasp的评论,我更新了selectedfeedgroup设置器。。。

public FeedGroupDisplayModel SelectedFeedGroup
{
    get { return _selectedFeedGroup; }
    set
    {
        _selectedFeedGroup = value;
        var FeedGroupRation = LoadFeedGroup
        NotifyOfPropertyChange(() => SelectedFeedGroup);
    }
}

我不知道这是不是最好的办法,但我为我的案子工作。

相关问题