Files
MadokamiClient/MadokamiDownloader/MainWindow.cs
Cameron Neville 821386b6bd first commit
2018-07-04 16:12:35 -05:00

39 lines
880 B
C#

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)
{
}
}
}