albatross
albatross

Reputation: 455

WP8 webview missing reference

Im trying to add webview inside xaml. It gives this error. I ve searched but couldnt find the answer. Is it possible to add webview inside WP8 page.

   <Grid x:Name="todaysGrid" >
      <Grid.RowDefinitions>
           <RowDefinition Height="Auto" />
           <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <WebView x:Name="webView1" Grid.Row="0"  Height="800"/>
   </Grid>

Error   1   The type or namespace name 'WebView' could not be found (are you missing a using directive or an assembly reference?)   

Thanks.

Upvotes: 0

Views: 325

Answers (1)

Soonts
Soonts

Reputation: 21936

The control is called WebBrowser.

Upvotes: 1

Related Questions