vote up 4 vote down star
1

In WPF, I want to create a hyperlink that navigates to the details of an object, and I want the text of the hyperlink to be the name of the object. Right now, I have this:

<TextBlock><Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}">Object Name</Hyperlink></TextBlock>

But I want "Object Name" to be bound to the actual name of the object. I would like to do something like this:

<TextBlock><Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}" Text="{Binding Path=Name}"/></TextBlock>

However, the Hyperlink class does not have a text or content property that is suitable for data binding (that is, a dependency property).

Any ideas?

flag

3 Answers

vote up 10 vote down check

It looks strange, but it works. We do it in about 20 different places in our app. Hyperlink implicitly constructs a <Run/> if you put text in it's "content", but <Run/> won't let you bind to it, so you've got to explicitly use a textblock.

<TextBlock>
    <Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}">
        <TextBlock Text="{Binding Path=Name}"/>
    </Hyperlink>
</TextBlock>
link|flag
vote up 0 vote down

This worked for me in a "Page".

<TextBlock>
<Hyperlink NavigateUri="{Binding Path}">
	<TextBlock Text="{Binding Path=Path}"/>
</Hyperlink></TextBlock>
link|flag
vote up -1 vote down

You really want a button object where you set the content property to be a hyperlink. Remember in WPF, the class you use is based on what it does, not what it looks like.

A button issues a command and has all the properties you want. It also allows you to style it however by simply saying:

<Button Command="myCommand">
    <Hyperlink>My Text</Hyperlink>
</Button>

Just because the default form for button is a traditional button, doesn't mean it has to look that way. Traditionally this is called a LinkButton.

link|flag
I don't actually know what using a <Button/> would buy you other than a heavier-weight object. – Bob King Sep 26 '08 at 18:03
Button isn't that much heavier than Hyperlink and it was designed to do what you're looking for. – Orion Adrian Sep 26 '08 at 18:06
That's incredibly heavy-weight (a Button has a much larger memory footprint that two textblocks), and still doesn't solve the original problem of not being able to make the hyperlink's text be data-bound. – Bob King Sep 26 '08 at 18:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.