Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project System: WPF Property pages #10017

Closed
davkean opened this issue Mar 23, 2016 · 1 comment
Closed

Project System: WPF Property pages #10017

davkean opened this issue Mar 23, 2016 · 1 comment

Comments

@davkean
Copy link
Member

davkean commented Mar 23, 2016

WPF flavor swaps in property pages, we need to decide what we'll do around this:

        if (pageReplacements == null)
        {
            // Populate the page replacements list
            pageReplacements = new List<PageReplacementItem>();
            if (IsHostInBrowser)
            {
                // For XBAPs, swap in the new security and signing pages:
                pageReplacements.Add(new PageReplacementItem(
                    "{DF8F7042-0BB1-47D1-8E6D-DEB3D07698BD}",   // Security property page
                    "{00a2c8fe-3844-41be-9637-167454a7f1a7}"    // WPF Security property page
                ));
                pageReplacements.Add(new PageReplacementItem(
                    "{F8D6553F-F752-4DBF-ACB6-F291B744A792}",   // Signing property page
                    "{e4b54061-084d-4484-9d21-ecae95a78a56}"    // WPF Signing property page
                ));
            }
            if (GetLanguage() == Language.VisualBasic)
            {
                // For all VB WPF apps, swap in the new application page:
                pageReplacements.Add(new PageReplacementItem(
                    "{8998E48E-B89A-4034-B66E-353D8C1FDC2E}",   // VB Application property page
                    "{00aa1f44-2ba3-4eaa-b54a-ce18000e6c5d}"    // VB WPF Application property page
                ));
            }
        }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant