Exemplo n.º 1
0
		public MainForm()
		{
			var board = new DartBoard { Dock = DockStyle.Fill };
			Controls.Add(board);
			match = new Match("1", new[] { "John", "Elis" }, 501, 5);
			board.OnSectorClick += result => Text = result.ToString();
		}
Exemplo n.º 2
0
        public MainForm()
        {
            var board = new DartBoard {
                Dock = DockStyle.Fill
            };

            Controls.Add(board);
            match = new Match("1", new[] { "John", "Elis" }, 501, 5);
            board.OnSectorClick += result => Text = result.ToString();
        }