Exemple #1
0
 public PairWindow(TournamentView view, Pair pair, WindowHelper.ResultHandler onResult)
 {
     InitializeComponent();
     InitPalette();
     OnResult = onResult;
     SetContext(view, pair);
     _isActivated = true;
 }
Exemple #2
0
 public AboutWindow(TournamentView view, WindowHelper.ResultHandler onResult)
 {
     InitializeComponent();
     InitPalette();
     SetContext(view);
     InitLangs();
     OnResult = onResult;
 }
Exemple #3
0
        public PlayerWindow(TournamentView view, Player player, WindowHelper.ResultHandler onResult)
        {
            InitializeComponent();

            InitPalette();
            OnResult = onResult;

            SetContext(view, player);
        }
Exemple #4
0
        public TournamentPropertiesWindow(Tournament tournament, WindowHelper.ResultHandler onResult)
        {
            InitializeComponent();
            InitPalette();

            OnResult = onResult;
            SetContext(tournament);
            InitLangs();
        }
 public ClubWindow(TournamentView view, Club club, string countryCode, WindowHelper.ResultHandler onResult, bool editMode)
 {
     InitializeComponent();
     InitPalette();
     OnResult = onResult;
     SetContext(view, club, countryCode, editMode);
     InitLangs();
     InitBars();
 }
        public AssistantWindow(Tournament tournament, TournamentScheme shceme, WindowHelper.ResultHandler onResult)
        {
            InitializeComponent();
            InitPalette();

            OnResult = onResult;
            SetContext(tournament, shceme);
            InitLangs();
        }