Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6989117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:10:12+00:00 2026-05-27T19:10:12+00:00

I am building a WPF application in which I want to send users to

  • 0

I am building a WPF application in which I want to send users to our website if software updates are available. What are the best practices for embedding a link in a WPF window?

Some sub-questions:
Can I include a clickable URL? Should I open the link in their web browser? If so, what sort of command would open their default web browser? Should I include a navigation control in-app so they can download updates from there?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:10:13+00:00Added an answer on May 27, 2026 at 7:10 pm

    The ‘textbook’ answer to deploying an application that will have updates is the ClickOnce deployment. From MSDN: ClickOnce is a deployment technology that allows you to create self-updating Windows-based applications that can be installed and run with minimal user interaction. ClickOnce deployment overcomes three major issues inherent in deployment…

    From http://msdn.microsoft.com/en-us/library/142dbbz4(v=vs.80).aspx

    As to hyperlinks, you might consider adding them to your “Help | About” box. An example is the one for Notepad++…

    Hyperlinks in the About Box

    To add a hyperlink…

        <TextBlock>
            <Hyperlink NavigateUri="http://www.bbc.co.uk" Click="Hyperlink_Click" >BBC</Hyperlink>
        </TextBlock>
    

    And the callback would be…

    private void Hyperlink_Click(object sender, RoutedEventArgs e)
    {
        Hyperlink hyperlink = sender as Hyperlink;
        if(hyperlink!=null)
        {
            Process.Start(hyperlink.NavigateUri.AbsoluteUri);
        }
    }
    

    This will open the default browser and cause it to navigate to the link’s address.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am building a WPF application and I want its background to be filled
I am building a WPF application using C#. I want to pop out a
I am building a WPF application in which I need to open one of
I'm building a WPF application in which I need to display document previews such
Hi I am building a wpf application in which a screen will be comprising
I'm building an WPF (C#) application and I want to add a namespace to
I'm building a WPF application in which I have a need to get the
I'm building a WPF application and this WPF application is having a toolbar-like panel
I'm building WPF client application. I'm following MVC pattern. The project solution has many
I'm building a WPF application. I'm doing some async communication with the server side,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.