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 8539539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:23:22+00:00 2026-06-11T11:23:22+00:00

I have a button that has its content (text) set dynamically via a style

  • 0

I have a button that has its content (text) set dynamically via a style against a backing property as below.

<Button>
   <Button.Style>
      <Style>
         <Setter Property="Button.Content" Value="Advanced Search" />
         <Style.Triggers>
            <DataTrigger Binding="{Binding Path=IsAdvancedSearch}" Value="True">
               <Setter Property="Button.Content" Value="Standard Search" />
            </DataTrigger>
         </Style.Triggers>
      </Style>
   </Button.Style>
</Button>

I need to change this button to display just a hyperlink with the same dynamic text. Like this:

<Button>
   <Button.Template>
      <ControlTemplate>
         <TextBlock>
            <Hyperlink>
               Standard Search
            </Hyperlink>
         </TextBlock>
      </ControlTemplate>
   </Button.Template>
</Button>

Is there a way to set the hyperlink’s text (inline or some other tag) dynamically via a style still?

I haven’t been able to get access to it via XAML. I got it working with a normal binding on a textblock inside the hyperlink but that is creating a redundant property on the viewmodel really.

  • 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-06-11T11:23:23+00:00Added an answer on June 11, 2026 at 11:23 am

    Solution was to simply apply the style to an inner Textblock.

                <Button x:Name="SwitchSearchType">
                    <Button.Template>
                        <ControlTemplate>
                            <TextBlock>
                                <Hyperlink>
                                    <Hyperlink.Inlines>
                                        <TextBlock>
                                            <TextBlock.Style>
                                                <Style>
                                                    <Setter Property="TextBlock.Text" Value="Advanced Search" />
                                                    <Style.Triggers>
                                                        <DataTrigger Binding="{Binding Path=IsAdvancedSearch}" Value="True">
                                                            <Setter Property="TextBlock.Text" Value="Standard Search" />
                                                        </DataTrigger>
                                                    </Style.Triggers>
                                                </Style>
                                            </TextBlock.Style>
                                        </TextBlock>
                                    </Hyperlink.Inlines>
                                </Hyperlink>
                            </TextBlock>
                        </ControlTemplate>
                    </Button.Template>
                </Button>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UITextView that has a lot of content. I have a button
I want to have a button that has numbers in the range 0 ...
I have an express server that has a button that issues a POST which
I have this code that has one button that let's me choose an entry
Hi I use GWT and I have a com.smartgwt.client.widgets.Button that has the following eventHandler:
I have a button inside of a stackpanel that has to be pressed twice
I have this button on the leftside of my UISplitViewController (RootViewController) that has a
I have a Linear Layout that has a Button and a TextView on it.
I have a JPanel that has a button in it. The location of the
I have a WrapPanel that has a button as a child element. Both the

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.