예제 #1
0
 public void changeInfo(Brony _brother)
 {
     this.currentBrony   = _brother;
     this.u_Ava.Source   = this.currentBrony.Avatar;
     this.u_About.Text   = this.currentBrony.AboutBrony;
     this.u_Nick.Content = this.currentBrony.Name;
 }
예제 #2
0
 public void defaultInfo()
 {
     this.currentBrony   = new Brony();
     this.u_Ava.Source   = this.currentBrony.Avatar;
     this.u_About.Text   = this.currentBrony.AboutBrony;
     this.u_Nick.Content = this.currentBrony.Name;
 }
예제 #3
0
 public void changeInfo(string _name, pony_type _race, user_type _uType, bool _isOnline, string _About, BitmapImage _ava)
 {
     this.currentBrony   = new Brony(_name, _About, _race, _uType, "", _isOnline, _ava);
     this.u_Ava.Source   = this.currentBrony.Avatar;
     this.u_About.Text   = this.currentBrony.AboutBrony;
     this.u_Nick.Content = this.currentBrony.Name;
 }