|
0
|
1 |
using System; |
|
|
2 |
using System.Collections.Generic; |
|
|
3 |
using System.Linq; |
|
|
4 |
using System.Net; |
|
|
5 |
using System.Windows; |
|
|
6 |
using System.Windows.Controls; |
|
|
7 |
using System.Windows.Documents; |
|
|
8 |
using System.Windows.Input; |
|
|
9 |
using System.Windows.Media; |
|
|
10 |
using System.Windows.Media.Animation; |
|
|
11 |
using System.Windows.Shapes; |
|
|
12 |
|
|
6
|
13 |
using System.Threading; |
|
|
14 |
using System.Globalization; |
|
|
15 |
|
|
0
|
16 |
using Iri.Modernisation.Controls.ViewModel; |
|
|
17 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
|
18 |
using Iri.Modernisation.Data.LDTClass; |
|
|
19 |
using Iri.Modernisation.Data.Models; |
|
|
20 |
|
|
|
21 |
namespace Iri.Modernisation |
|
|
22 |
{ |
|
|
23 |
public partial class MainPage : UserControl |
|
|
24 |
{ |
|
|
25 |
public MainPage() |
|
|
26 |
{ |
|
6
|
27 |
Commands.Initialize(); |
|
0
|
28 |
InitializeComponent(); |
|
12
|
29 |
|
|
|
30 |
MainElement.DataContext = new MainVM(new List<VideoBook>()); |
|
0
|
31 |
|
|
|
32 |
} |
|
12
|
33 |
|
|
|
34 |
|
|
0
|
35 |
} |
|
|
36 |
} |