public User(User user) { this.Name = user.Name; this.Image = user.Image; this.IsOnline = user.IsOnline; this.Level = user.Level; discution = new Channel(user.Name, false); }
public NewBattlePopUp(User user) { this.InitializeComponent(); this.DataContext = user; ShowAnnimation.Begin(); RemoveAnnimation.Completed += RemoveAnnimation_Completed; }
public void Add(User newUser) { userList.Add(newUser); }