public ProcessNote() { InitializeComponent(); this.viewService = new ViewService(); this.tabService = new TabService(); listView1.DoubleClick += listView1_DoubleClick; }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); TabService tabService = new TabService(); tabService.InitialTab(); TitleBarTabsApplicationContext applicationContext = new TitleBarTabsApplicationContext(); applicationContext.Start(tabService.AppContainer); Application.Run(applicationContext); }