first commit

This commit is contained in:
Cameron Neville
2018-07-04 16:12:35 -05:00
parent e4520870e8
commit 821386b6bd
21 changed files with 5934 additions and 78 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.Http;
using System.Text.RegularExpressions;
namespace MadokamiDownloader
{
public partial class MainWindow : Form
{
const string baseURL = "https://manga.madokami.al";
Dictionary<string, string[]> pagetopage = new Dictionary<string, string[]>();
HttpClientHandler Handler = new HttpClientHandler();
public MainWindow()
{
InitializeComponent();
}
private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
}
private void fileToolStripMenuItem_Click(object sender, EventArgs e)
{
}
}
}