如何在通用列表wpf C#中获取用户名的用户名?

时间:2017-04-06 15:53:33

标签: c# wpf xaml combobox generic-list

我编写WPF客户端应用程序。我有一个休息api,WPF客户端正在与此通信。我在wpf中制作了一个组合框,数据绑定没问题。

XAML标记:

<ComboBox Name="usernameBox" HorizontalAlignment="Left" 
          Margin="127,33,0,0" VerticalAlignment="Top" Width="152" Height="24" 
          ItemsSource="{Binding UserList}" DisplayMemberPath="Username"/>

这很好用。但是我有一个通用列表Userlist,我为组合框绑定了它。我希望用户名是组合框,我可以用userid获取变量。

Model \ Users类:

namespace Desktop.Model
{
    public class Users
    {
        public int UserId { get; set; }
        public string Username { get; set; }
        public string Password { get; set; }
        public string Fullname { get; set; }
        public int Authority { get; set; }
    }
}

ViewModel / UserViewModel类:

using GalaSoft.MvvmLight;
using Desktop.Model;
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.Http.Formatting;
using Newtonsoft.Json;

namespace Desktop.ViewModel
{
    public class UserViewModel : ViewModelBase
    {
        public List<Users> UserList { get; set; }

        public UserViewModel()
        {
            UserList = new List<Users>();
            string url = "http://localhost:1234/api/users";
            var json = new WebClient().DownloadString(url);
            UserList = JsonConvert.DeserializeObject<List<Users>>(json);
        }
    }
}

获取api / users json:

[
  {
    "UserID": 1,
    "Username": "admin",
    "Password": "password",
    "Fullname": "teszt",
    "Authority": 1
  }
]

抱歉我的英语不好。请帮我!谢谢。

2 个答案:

答案 0 :(得分:0)

我设法解决了。

XAML标记:

<ComboBox x:Name="usernameBox" HorizontalAlignment="Left" Margin="127,33,0,0" VerticalAlignment="Top" Width="152" ItemsSource="{Binding UserList}" SelectedValuePath="UserId" DisplayMemberPath="Username"/>

代码隐藏:

var id = usernameBox.SelectedValue;

它工作正常!

答案 1 :(得分:0)

像你一样使用MVVM,你可以添加到你的XAML:

SelectedItem="{Binding SelectedUser}"
在您的ViewModel中

private Users _user;
public Users SelectedUser
{
    get
    {
        return _user;
    }
    set
    {
        if (_user == value)
            return;
        _user = value;
        OnPropertyChanged(nameof(SelectedUser));
    }
}

完成后,使用属性SelectedUser获取您选择的&#34; Users&#34;在你的ComboBox