Windows Phone 8应用
在我的MainPage.xaml中,我有以下内容:
<Image HorizontalAlignment="Left" Height="215" VerticalAlignment="Top" Width="450" Margin="10,299,-40,0" Source="/Assets/Images/MTCOB.jpg"/>
我想要的是让用户点击这个,然后在IE8中打开一个网站。
在我的MainPage.xmal.cs中,我有以下内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using GamesWithGold.Resources;
using Microsoft.Phone.Tasks;
using System.Windows.Interop;
namespace GamesWithGold
{
public partial class MainPage : PhoneApplicationPage
{
public MainPage()
{
InitializeComponent();
}
private void Image_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
}
}
}
.............
我是新手,所以非常希望能帮助我在BETA中推出我的第一个应用程序。
答案 0 :(得分:0)
试试这个:
private void Image_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
WebBrowserTask BrowserTask = new WebBrowserTask();
BrowserTask.Uri = new Uri("http://www.google.com",UriKind.Absolute);
BrowserTask.Show();
}