Exemplo n.º 1
0
 /// <summary>
 /// </summary>
 private void CreateRankedStatusFilter() => RankedStatusFilter = new RadioFilter(this, "Ranked Status:", new List <string>
 {
     "Ranked",
     "Unranked",
 }, OnRankedStatusFilterChanged)
 {
     Parent = this,
     Y      = GameModeFilter.Y + GameModeFilter.Height + 20,
     X      = TextFilter.X
 };
Exemplo n.º 2
0
 /// <summary>
 /// </summary>
 private void CreateGameModeFilter() => GameModeFilter = new RadioFilter(this, "Game Mode:", new List <string>
 {
     "4 Keys",
     "7 Keys"
 }, OnGameModeFilterChanged)
 {
     Parent = this,
     Y      = TextFilter.Y + TextFilter.Height + 8,
     X      = TextFilter.X
 };