Inheritance: Cocoa.Object
Exemplo n.º 1
0
 public void FinishLoading(Notification aNotification)
 {
     drawer.Open();
     mainWindow.Show ();
     indexBrowser.DoubleAction += new EventHandler (OnBrowserDoubleAction);
     outlineView.DoubleAction += new EventHandler (OnOutlineViewDoubleAction);
     // use history.
     webView.HasBackForwardList = true;
     webView.BackForwardList.Capacity = 100;
     forwardMenuItem.Click += new ActionHandler (goForward);
     backMenuItem.Click += new ActionHandler (goBack);
     Node match;
     string content = help_tree.RenderUrl("root:", out match);
     content=content.Replace("a href='", "a href='http://monodoc/load?");
     content=content.Replace("a href=\"", "a href=\"http://monodoc/load?");
     webView.Render (content);
     addHistoryItem("root:");
 }
Exemplo n.º 2
0
 public void FinishLoading(Cocoa.Notification notification)
 {
     Console.WriteLine("Form Loaded");
 }
Exemplo n.º 3
0
 public void FinishLoading(Notification notification)
 {
     textBox1.Value = "Form Loaded";
 }
Exemplo n.º 4
0
 public void WindowDidResize(Notification notification)
 {
     itsView.Invalidate (itsView.Bounds);
 }