本文以實例說明控制項 - 超連結(HyperlinkButton)
[前言]
這個範例是超連結按鈕(HyperlinkButton)的使用,HyperlinkButton 是一個可以連結網路的控制項,點擊可以連結到該網頁。
[成品]
[範例實作]
Step1. 新增 Windows Phone 應用程式專案。
Step2. 建立一個直立頁面。(在專案中按下右鍵 --> 加入 --> 新增項目)
Srep3. MainPage.xaml.cs 上的程式碼內容。
XAML:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<HyperlinkButton Height="30"
Content="超連結" Background="Blue" Foreground="Orange"
FontWeight="Bold" Margin="-12,51,234,589"/>
<HyperlinkButton Content="Google" NavigateUri="https://www.google.com.tw/" TargetName="_blank" Margin="12,72,234,486" FontSize="30"/>
<HyperlinkButton x:Name="HomeLink" Content="Pagel頁面" HorizontalAlignment="Left"
Margin="6,145,0,0" VerticalAlignment="Top" Width="216"
Height="47" Foreground="Yellow" FontWeight="Bold"
NavigateUri="/Page1.xaml"
FontSize="30"/>
</Grid>
[參考引用]