Exemplo n.º 1
0
		public virtual void OnPageSaving(TGPageSavingEventArgs e) {
			// Has anyone registered for the event?
			if (PageSaving != null)
				PageSaving(this, e);
		}
Exemplo n.º 2
0
 public virtual void OnPageSaving(TGPageSavingEventArgs e)
 {
     // Has anyone registered for the event?
     if (PageSaving != null)
         PageSaving(this, e);
 }
Exemplo n.º 3
0
 private void PageSaving(Crownwood.Magic.Controls.TabbedGroups tg, Crownwood.Magic.Controls.TGPageSavingEventArgs e)
 {
     // Persist the text box contents
     e.XmlOut.WriteCData((e.TabPage.Control as RichTextBox).Text);
 }