示例#1
0
        protected override bool OnStartup(
            Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e)
        {            
            string extension = ".testDoc";
            string title = "SingleInstanceApplication";
            string extensionDescription = "A Test Document";
            // Uncomment this line to create the file registration.
            // In Windows Vista, you'll need to run the application
            // as an administrator.            
            //FileRegistrationHelper.SetFileAssociation(
            //  extension, title + "." + extensionDescription);

            app = new WpfApp();
            app.Run();

            return false;
        }
示例#2
0
        protected override bool OnStartup(
            Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e)
        {
            string extension            = ".testDoc";
            string title                = "SingleInstanceApplication";
            string extensionDescription = "A Test Document";

            // Uncomment this line to create the file registration.
            // In Windows Vista, you'll need to run the application
            // as an administrator.
            //FileRegistrationHelper.SetFileAssociation(
            //  extension, title + "." + extensionDescription);

            app = new WpfApp();
            app.Run();

            return(false);
        }