dags att checka in

This commit is contained in:
2021-08-02 12:41:02 +02:00
parent 5648effc9a
commit 668659bf20
34 changed files with 1092 additions and 5 deletions

View File

@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfScraper
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
Scraper scraper;
public MainWindow()
{
InitializeComponent();
scraper = new Scraper();
DataContext = scraper;
}
private void BtnScraper_Click(object sender, RoutedEventArgs e)
{
scraper.ScrapeData(TbPage.Text);
}
private void ItemExport_Click(object sender, RoutedEventArgs e)
{
scraper.Export();
}
}
}