var button = new Button{Content = "Google"}; form.Controls.Add(button); button.Clicked+=(s,e)=>{
webView.Source = new Uri("https://www.google.com.hk/");
};