コード例 #1
0
ファイル: profilebody.cs プロジェクト: interlink32/Cell
 private void reset(s_fulluser obj)
 {
     user                    = obj.user;
     txtcity.Text            = user.city;
     txtdescribtion.Text     = user.description;
     txtfullname.Text        = user.fullname;
     txtnationalcode.Text    = user.nationalcode;
     txttell.Text            = user.tell;
     cmbgender.SelectedIndex = (int)user.nature;
 }
コード例 #2
0
ファイル: alluser.cs プロジェクト: Sirlupinwatson1/Cell_
 static void remove(s_user user)
 {
     list.Remove(user);
     client.close(user.id);
     addremove_e?.Invoke(false, user.id);
 }