private void OnMailTss(object sender, RoutedEventArgs e)
        {
            Console.WriteLine("Mail TSS Clicked");
            string path         = TechnicalSupportInfoBuilder.CreateAndGetTechnicalSupportInfoAsTextFile(true);
            var    feedbackView = new FeedbackView(path);

            feedbackView.Show();
        }
        public override void Initialize()
        {
            System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
//            var version = assembly.GetName().Version;

            this.ACEVersionLabel.Content     = assembly.GetName().Name + " Version: ";
            this.ACEVersionInfoLabel.Content = TechnicalSupportInfoBuilder.GetACEVersion();// string.Format("Version {0}.{1}.{2}", version.Major, version.Minor, version.Build);

            this.OperatingSystemInfoLabel.Text = TechnicalSupportInfoBuilder.GetFriendlyOsNameWithServicePack();

            this.TechnicalSupprtInfoTextBlock.Text = TechnicalSupportInfoBuilder.GetStringForTechnicalSupprtString(false);
        }