1 |
william |
2 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.ComponentModel; |
4 |
|
|
using System.Data; |
5 |
|
|
using System.Drawing; |
6 |
|
|
using System.Text; |
7 |
|
|
using System.Windows.Forms; |
8 |
william |
11 |
using libxmltv.Core; |
9 |
william |
2 |
|
10 |
|
|
namespace xmltv_parser |
11 |
|
|
{ |
12 |
|
|
public partial class Form1 : Form |
13 |
|
|
{ |
14 |
|
|
public Form1() |
15 |
|
|
{ |
16 |
|
|
InitializeComponent(); |
17 |
|
|
} |
18 |
william |
11 |
|
19 |
|
|
private void Form1_Load(object sender, EventArgs e) |
20 |
|
|
{ |
21 |
|
|
|
22 |
|
|
} |
23 |
|
|
private void Form1_Shown(object sender, EventArgs e) |
24 |
|
|
{ |
25 |
|
|
var xmltv = XMLTV.CreateLoader("20130307_continuum_schedule.xml"); |
26 |
|
|
//XMLTV.Test(xmltv); |
27 |
|
|
} |
28 |
|
|
|
29 |
|
|
|
30 |
william |
2 |
} |
31 |
|
|
} |