public DlgTournamentRegistration(int tournamentID)
 {
     this.mCanRefresh = true;
     this.mSelectedRecord = null;
     this.components = null;
     this.InitializeComponent();
     this.InitMonths();
     this.RefreshDates(tournamentID);
 }
예제 #2
0
 public AutomatchPlayers(DataRecord record) : base(record)
 {
 }
예제 #3
0
 public Chatroom(DataRecord record) : base(record)
 {
 }
예제 #4
0
 public ContentList(DataRecord record) : base(record)
 {
 }
예제 #5
0
 public ClanRequest(DataRecord record) : base(record)
 {
 }
예제 #6
0
 public ConfigSetting(DataRecord record) : base(record)
 {
 }
예제 #7
0
 public PlayerDisplayAwards(DataRecord record) : base(record)
 {
 }
예제 #8
0
 public CustomApplication(DataRecord record) : base(record)
 {
     foreach (GameInformation information in GameInformation.Games)
     {
         if (this.GameID == information.GameID)
         {
             this.mGameInfo = information;
         }
     }
     try
     {
         File.Delete(this.GetLocalPatchFile());
     }
     catch (Exception exception)
     {
         ErrorLog.WriteLine(exception);
     }
 }
예제 #9
0
 public LadderGameResult(DataRecord record) : base(record)
 {
 }
예제 #10
0
 public LadderDegradation(DataRecord record) : base(record)
 {
 }
예제 #11
0
 public URLInfo(DataRecord record) : base(record)
 {
 }
예제 #12
0
 public GameItem(DataRecord record) : base(record)
 {
 }
예제 #13
0
 public User(DataRecord record) : base(record)
 {
 }
예제 #14
0
 protected override void FromDataTransfer(DataRecord record)
 {
     try
     {
         this.mID = Convert.ToInt32(record["id"]);
         this.mName = record["name"];
         this.mGroups = Convert.ToInt32(record["groups"]);
         this.mIsDND = Convert.ToInt32(record["is_dnd"]) > 0;
         this.mIsAway = Convert.ToInt32(record["is_away"]) > 0;
         this.mClanAbbreviation = record["clan_id"];
         this.mClanName = record["clan_name"];
         this.mOnline = Convert.ToInt32(record["online"]) > 0;
         int.TryParse(record["rank"], out this.mRank);
         this.mCustomData = record["custom_data"];
         if (record.InnerHash.ContainsKey("avatar"))
         {
             int.TryParse(record["avatar"], out this.mAvatar);
         }
         if (record.InnerHash.ContainsKey("award1"))
         {
             int.TryParse(record["award1"], out this.mAward1);
         }
         if (record.InnerHash.ContainsKey("award2"))
         {
             int.TryParse(record["award2"], out this.mAward2);
         }
         if (record.InnerHash.ContainsKey("award3"))
         {
             int.TryParse(record["award3"], out this.mAward3);
         }
     }
     catch (Exception exception)
     {
         ErrorLog.WriteLine(exception);
     }
 }
예제 #15
0
 public ReplayComment(DataRecord record) : base(record)
 {
 }
예제 #16
0
 public UserLocation(DataRecord record) : base(record)
 {
 }
예제 #17
0
 public PlayerAward(DataRecord record) : base(record)
 {
 }
예제 #18
0
 public CustomMap(DataRecord record) : base(record)
 {
 }
예제 #19
0
 public AccessControlList(DataRecord record) : base(record)
 {
 }
예제 #20
0
 public PlayerRating(DataRecord record) : base(record)
 {
 }
예제 #21
0
 public LadderParticipant(DataRecord record) : base(record)
 {
 }
예제 #22
0
 public ClanInvite(DataRecord record) : base(record)
 {
 }
예제 #23
0
 public ReplayList(DataRecord record) : base(record)
 {
 }
예제 #24
0
 public FriendRequest(DataRecord record) : base(record)
 {
 }
예제 #25
0
 public Video(DataRecord record) : base(record)
 {
 }
예제 #26
0
파일: Mod.cs 프로젝트: micheljung/gpgnetfix
 public Mod(DataRecord record) : base(record)
 {
 }
예제 #27
0
 public LadderInstance(DataRecord record) : base(record)
 {
 }
예제 #28
0
 public VolunteerEffort(DataRecord record) : base(record)
 {
 }
예제 #29
0
 public Award(DataRecord record) : base(record)
 {
 }
예제 #30
0
 public ContentComment(DataRecord record) : base(record)
 {
 }