Exemplo n.º 1
0
        private void TransparentPopupWindowCommand(object sender, EventArgs e)
        {
            var url = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(new Uri(typeof(DemoApp).Assembly.CodeBase).LocalPath), "transparency.html");

            MainView.NewWebView(url, true);
        }
Exemplo n.º 2
0
 private void FileExitCommand(object sender, EventArgs e)
 {
     MainView.Close();
 }
Exemplo n.º 3
0
 private void SchemeHandlerDumpRequestCommand(object sender, EventArgs e)
 {
     MainView.NavigateTo("http://" + DumpRequestDomain);
 }
Exemplo n.º 4
0
 private void FileNewTabCommand(object sender, EventArgs e)
 {
     MainView.NewTab(HomeUrl);
 }