public MainWindow()
        {
            InitializeComponent();

            timer1.Interval = new TimeSpan(0, 0, 2);
            timer1.Tick    += timer1_Tick;

            PD = new ParsedData(this);

            XMLData.LoadSettings(this);

            XMLData xd = new XMLData();

            xd.Load(FootData, Bookmakers);

            UpdateControls();
            WriteBreakToFile.ClearFile();
            WriteDataTotable("All");
        }
Exemplo n.º 2
0
        private void MenuItem_Load(object sender, RoutedEventArgs e)
        {
            XMLData xd = new XMLData();

            xd.Load(FootData, Bookmakers);
        }