Floating FB sharing byReview Results

Floating FB sharing byReview Results

  • WPF Tutorial

    • # Read in Your Language


    WPF Controls

    Tutorial Home | Layouts | Containers| Button | CheckBox and CheckedListBox | ComboBox| DateTimePicker and MonthCalendar | DataGrid | Label and LinkLabel| ListBox | ListView | TextBox and MaskedTextBox| PictureBox and ProgressBar | TreeView | WebBrowser| Menus,Status and Toolbar | RadioButton | RichTextBox| ToolTip and Scrolling | Custom Controls

    WebBrowser control in WPF

    WebBrowser:


    Namespace : System.Windows.Controls.WebBrowser

    WebBrowser control hosts and navigates between HTML documents

    if you want to show content from the server as HTML, or load an html document directly inside the WPF window, this control will be useful

    This uses Internet Explorer Browser Engine internally.


    Designer Code:

    
            <WebBrowser x:Name="WebBrowser1" Margin="0,0,0,0" Cursor="Arrow"/>
            

    Code Behind:

    Setting Navigation url for webbrowser
    
            // Window1.xaml.cs
    private void Window_Loaded(object sender, RoutedEventArgs e) { WebBrowser1.Navigate(new Uri("http://www.win2wpf.com")); }





    << Previous >> | << Next >>