hyperlinkbutton

How can I avoid the bluish border when clicking a HyperlinkButton in Silverlight?

I have a Silverlight menu for my application with an image as the background. I use some empty HyperlinkButton at a specific position and size to simulate a real button on the image (think as a HTML image-map): <HyperlinkButton x:Name="Portfolio" Width="86" Height="40" Canvas.Top="50" NavigateUri="/portfolio"/> <HyperlinkButton x:Name="...

How to Programatically "Click" a Silverlight HyperlinkButton (WebAii)

I'm currently using the WebAii automation framework to write some user interface tests against a Silverlight 3 application. I'm new to Silverlight and suspect that I'm missing some bit of information about the HyperlinkButton. The application has a HyperlinkButton and I'm attempting to write code that navigates to the page, finds the b...

Can HyperLinkButton in silverlight navigate a NAS or Local-file uri?

Hi, In my silverlight application I have a section like this: <HyperlinkButton Content="{Binding MediaFile.FileName}" TargetName="_blank" NavigateUri="{Binding ., Converter={StaticResource MediaFileToFullPathConverter}}" Style="{StaticResource HyperLinkButtonStyle}"/> For testing purposes I use local navigation paths to the ui ...

Silverlight passing parameters between pages using HyperlinkButton

Hi, I have a page that displays a list of users. each user has an ID and a HyperlinkButton to watch more details about the user. When pressing the HyperlinkButton, I would like to navigate to another page (called UserDetails) and somehow read the ID of the user that was pressed. How can I do that? Thanks, Ronny ...

Silverlight 4.0: HyperlinkButton

How to redirect your navigateuri of hyperlinkbutton to your isolatedstorage? or Is there a workaround to display data from isolatedstorage to new browser? ...

How can I add an underline to a HyperlinkButton in Silverlight?

It seems I can format a HyperlinkButton in the same way I can format a TextBlock: HyperlinkButton hyperlinkButton = new HyperlinkButton(); hyperlinkButton.Content = "google"; hyperlinkButton.NavigateUri = new Uri("http://www.google.com"); hyperlinkButton.TargetName = "blank"; hyperlinkButton.Foreground = XamlHelpers.GetColorFromHex("555...

Make a silverlight textblock act like a hyperlink

I'm pretty new to silverlight. I have a text block that is displayed inside a datagrid (inside a DataGridTemplateColumn.CellTemplate template to be precise). I'd like to dynamically make some of the textblocks into hyperlinks that open a new window. Is there a way to do this - so far all I can come up with is using a hyperlink button ...

Firing of asynchronous (statistics) request of HyperlinkButton not registered

I have a HyperlinkButton in my Silverlight project. Clicking the link will open the URL in a new page: <HyperlinkButton x:Name="Button1" Content="Click" TargetName="_blank" Click="Button1_Click" NavigateUri="http://www.example.com" /> When I click the button, I want a (second) asynchronous request to be fired to a statistics ser...