Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want click a hyperlink in TextBlock is enable.


For example,

if contents of the TextBlock is "Hello http://com.com ex",
I want to be part http://com.com click.

Is a way to bring the text to show on the web.

* content of the TextBlock Shows the contents of the Grid Control


How Can I?
Posted

This[^] should guide you to what you want to do.
 
Share this answer
 
Comments
rus204 28-Aug-10 4:16am    
Sorry, I just want URL of the text to be displayed as a hyperlink.
Yusuf was correct. For example:
XML
<TextBlock>
    <TextBlock>Click </TextBlock>
    <Hyperlink NavigateUri="http://www.google.com/">
        http://www.google.com/
    </Hyperlink>
    <TextBlock> to go there.</TextBlock>
</TextBlock>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900