-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
42 lines (37 loc) · 1.36 KB
/
Program.cs
File metadata and controls
42 lines (37 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using ImageTagging;
using ImageTagging.Classes;
namespace ImageTaggingApp
{
static class Program
{
/// <summary>
/// Punto de entrada principal para la aplicación.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Codigo de pruebas
//TagStore Principal = new TagStore("MAIN");
//TagStore Nivel1_1 = new TagStore("Nivel1-Objeto1");
//TagStore Nivel1_2 = new TagStore("Nivel1-Objeto2");
//TagStore Nivel2_1 = new TagStore("Nivel2-Objeto1");
//TagStore Nivel2_2 = new TagStore("Nivel2-Objeto2");
//TagStore Nivel2_3 = new TagStore("Nivel2-Objeto3");
//Principal.add_children(Nivel1_1);
//Principal.add_children(Nivel1_2);
//Principal.ChildrenList[0].add_children(Nivel2_1);
//Principal.ChildrenList[0].add_children(Nivel2_2);
//Principal.ChildrenList[1].add_children(Nivel2_3);
//AddSubcategories form = new AddSubcategories(Principal);
//form.ShowDialog();
Application.Run(new ImageTagging());
}
}
}