static Splitter() { EventLookup.Register <Splitter>(c => c.OnPositionChanged(null), Splitter.PositionChangedEvent); EventLookup.Register <Splitter>(c => c.OnPositionChanging(null), Splitter.PositionChangingEvent); EventLookup.Register <Splitter>(c => c.OnPositionChangeStarted(null), Splitter.PositionChangingEvent); EventLookup.Register <Splitter>(c => c.OnPositionChangeCompleted(null), Splitter.PositionChangingEvent); }
static Window() { EventLookup.Register <Window>(c => c.OnClosed(null), ClosedEvent); EventLookup.Register <Window>(c => c.OnClosing(null), ClosingEvent); EventLookup.Register <Window>(c => c.OnLocationChanged(null), LocationChangedEvent); EventLookup.Register <Window>(c => c.OnWindowStateChanged(null), WindowStateChangedEvent); }
static WebView() { EventLookup.Register <WebView>(c => c.OnNavigated(null), WebView.NavigatedEvent); EventLookup.Register <WebView>(c => c.OnDocumentLoaded(null), WebView.DocumentLoadedEvent); EventLookup.Register <WebView>(c => c.OnDocumentLoading(null), WebView.DocumentLoadingEvent); EventLookup.Register <WebView>(c => c.OnDocumentTitleChanged(null), WebView.DocumentTitleChangedEvent); EventLookup.Register <WebView>(c => c.OnOpenNewWindow(null), WebView.OpenNewWindowEvent); }
static TreeGridView() { EventLookup.Register <TreeGridView>(c => c.OnExpanding(null), TreeGridView.ExpandingEvent); EventLookup.Register <TreeGridView>(c => c.OnExpanded(null), TreeGridView.ExpandedEvent); EventLookup.Register <TreeGridView>(c => c.OnCollapsing(null), TreeGridView.CollapsingEvent); EventLookup.Register <TreeGridView>(c => c.OnCollapsed(null), TreeGridView.CollapsedEvent); EventLookup.Register <TreeGridView>(c => c.OnSelectedItemChanged(null), TreeGridView.SelectedItemChangedEvent); }
static SegmentedButton() { EventLookup.Register <SegmentedButton>(c => c.OnSelectedItemsChanged(null), SelectedIndexesChangedEvent); EventLookup.Register <SegmentedButton>(c => c.OnSelectedItemChanged(null), SelectedIndexesChangedEvent); EventLookup.Register <SegmentedButton>(c => c.OnSelectedIndexChanged(null), SelectedIndexesChangedEvent); EventLookup.Register <SegmentedButton>(c => c.OnSelectedIndexesChanged(null), SelectedIndexesChangedEvent); EventLookup.Register <SegmentedButton>(c => c.OnItemClicked(null), ItemClickEvent); }
static Grid() { EventLookup.Register <Grid>(c => c.OnCellEdited(null), Grid.CellEditedEvent); EventLookup.Register <Grid>(c => c.OnCellEditing(null), Grid.CellEditingEvent); EventLookup.Register <Grid>(c => c.OnCellFormatting(null), Grid.CellFormattingEvent); EventLookup.Register <Grid>(c => c.OnSelectionChanged(null), Grid.SelectionChangedEvent); EventLookup.Register <Grid>(c => c.OnColumnHeaderClick(null), Grid.ColumnHeaderClickEvent); }
static TreeView() { EventLookup.Register <TreeView>(c => c.OnActivated(null), TreeView.ActivatedEvent); EventLookup.Register <TreeView>(c => c.OnSelectionChanged(null), TreeView.SelectionChangedEvent); EventLookup.Register <TreeView>(c => c.OnExpanding(null), TreeView.ExpandingEvent); EventLookup.Register <TreeView>(c => c.OnExpanded(null), TreeView.ExpandedEvent); EventLookup.Register <TreeView>(c => c.OnCollapsing(null), TreeView.CollapsingEvent); EventLookup.Register <TreeView>(c => c.OnCollapsed(null), TreeView.CollapsedEvent); EventLookup.Register <TreeView>(c => c.OnLabelEdited(null), TreeView.LabelEditedEvent); EventLookup.Register <TreeView>(c => c.OnLabelEditing(null), TreeView.LabelEditingEvent); EventLookup.Register <TreeView>(c => c.OnNodeMouseClick(null), TreeView.NodeMouseClickEvent); }
static Control() { EventLookup.Register <Control>(c => c.OnGotFocus(null), Control.GotFocusEvent); EventLookup.Register <Control>(c => c.OnKeyDown(null), Control.KeyDownEvent); EventLookup.Register <Control>(c => c.OnKeyUp(null), Control.KeyUpEvent); EventLookup.Register <Control>(c => c.OnLostFocus(null), Control.LostFocusEvent); EventLookup.Register <Control>(c => c.OnMouseDoubleClick(null), Control.MouseDoubleClickEvent); EventLookup.Register <Control>(c => c.OnMouseDown(null), Control.MouseDownEvent); EventLookup.Register <Control>(c => c.OnMouseEnter(null), Control.MouseEnterEvent); EventLookup.Register <Control>(c => c.OnMouseLeave(null), Control.MouseLeaveEvent); EventLookup.Register <Control>(c => c.OnMouseMove(null), Control.MouseMoveEvent); EventLookup.Register <Control>(c => c.OnMouseUp(null), Control.MouseUpEvent); EventLookup.Register <Control>(c => c.OnMouseWheel(null), Control.MouseWheelEvent); EventLookup.Register <Control>(c => c.OnShown(null), Control.ShownEvent); EventLookup.Register <Control>(c => c.OnSizeChanged(null), Control.SizeChangedEvent); EventLookup.Register <Control>(c => c.OnTextInput(null), Control.TextInputEvent); }
static Scrollable() { EventLookup.Register <Scrollable>(c => c.OnScroll(null), Scrollable.ScrollEvent); }
static MenuItem() { EventLookup.Register <MenuItem>(c => c.OnValidate(null), MenuItem.ValidateEvent); }
static Application() { EventLookup.Register <Application>(c => c.OnTerminating(null), Application.TerminatingEvent); }
static TextBox() { EventLookup.Register <TextBox>(c => c.OnTextChanging(null), TextBox.TextChangingEvent); }
static TextArea() { EventLookup.Register <TextArea>(c => c.OnSelectionChanged(null), TextArea.SelectionChangedEvent); EventLookup.Register <TextArea>(c => c.OnCaretIndexChanged(null), TextArea.CaretIndexChangedEvent); }
static SegmentedItem() { EventLookup.Register <SegmentedItem>(c => c.OnClick(null), ClickEvent); }
static Application() { EventLookup.Register <Application>(c => c.OnTerminating(null), Application.TerminatingEvent); EventLookup.Register <Application>(c => c.OnUnhandledException(null), Application.UnhandledExceptionEvent); EventLookup.Register <Application>(c => c.OnNotificationActivated(null), Application.NotificationActivatedEvent); }
static TextControl() { EventLookup.Register <TextControl>(c => c.OnTextChanged(null), TextControl.TextChangedEvent); }
static Expander() { EventLookup.Register <Expander>(c => c.OnExpandedChanged(null), Expander.ExpandedChangedEvent); }
static LinkButton() { EventLookup.Register <LinkButton>(c => c.OnClick(null), ClickEvent); }
static Splitter() { EventLookup.Register <Splitter>(c => c.OnPositionChanged(null), Splitter.PositionChangedEvent); }
static FontDialog() { EventLookup.Register <FontDialog>(c => c.OnFontChanged(null), FontDialog.FontChangedEvent); }
static TextStepper() { EventLookup.Register((TextStepper c) => c.OnStep(null), StepEvent); }
static PrintDocument() { EventLookup.Register <PrintDocument>(c => c.OnPrinting(null), PrintDocument.PrintingEvent); EventLookup.Register <PrintDocument>(c => c.OnPrinted(null), PrintDocument.PrintedEvent); EventLookup.Register <PrintDocument>(c => c.OnPrintPage(null), PrintDocument.PrintPageEvent); }
static GridView() { EventLookup.Register <GridView>(c => c.OnCellClick(null), GridView.CellClickEvent); }