private void LoginButton_Click(object sender, RoutedEventArgs e)
        {
            AppTracker appTracker = new AppTracker
            {
                UserName = UserNameText.Text,
            };

            Thread thread = new Thread(appTracker.StartTracking);

            thread.Start();
        }
Beispiel #2
0
        /// <summary>
        /// Main entry point of the application.
        /// </summary>
        private static void Main()
        {
            AppTracker appTracker = new AppTracker();

            appTracker.StartTracking();
        }