MVVM Support
In MVVM, commands are used to communicate between view and view model when a particular action takes places in the view. You may need to make use of events to achieve certain requirement that will not adhere to the MVVM policy. To overcome this, the event to command approach is used.
Communication between View and View Model
A command has been provided for each event, which will be raised when the event occurs. Each command has a custom parameter that allows you to pass an argument to the user command.
Using EventCommands
This section illustrates how to add and use EventToCommands in your application.
Syntax
..Syncfusion:EventCommandName.Command=“{Binding UserCommand}”..
..Syncfusion:EventCommandName.CommandParamerter=“{Binding Paramerter}”..
The following code example is used to add TreeViewAdvSelectedItemChangedCommand to the TreeViewAdv control in XAML.
<sync:TreeViewAdv x:Name="syncTree" DraggingEnable=”False” ItemsSource="{Binding Model}"
sync:TreeViewAdvSelectedItemChangedCommand.Command="{Binding SelectedItemChangedCommand}"
sync:TreeViewAdvSelectItemChangedCommand.CommandParameter="{Binding Path=SelectedItem,ElementName=syncTree}">
public DelegateCommand SelectedItemChangedCommand { get; set; }
public bool CanExecuteSelectedItemChanged(object parameter)
{
return true;
}
public void ExecuteSelectedItemChanged(object parameter)
{
ListItem.Add("Selection Changed to: " + (parameter as Model).Header);
}
While executing the application, when an item is gets selected, SelectedItemChangedCommand is get triggered.
Triggering SelectedItemChangedCommand
Sample location:
http://www.syncfusion.com/downloads/Support/DirectTrac/General/EventCommandDemo1383290188.zip
List of controls and their events and equivalent commands are tabulated in the following table.
Control : AutoComplete | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionModeChanged | AutoCompleteSelectionModeChangedCommand | Occurs when the SelectionMode property is changed. |
DropDownButtonVisibilityChanged | AutoCompleteDropDownButtonVisibilityChangedCommand | Occurs when the visibility of the drop-down button is changed. |
IsHistoryEnabledChanged | AutoCompleteIsHistoryEnabledChangedCommand | Occurs when the IsHistoryEnabled property is changed. |
IsDropDownOpenChanged | AutoCompleteIsDropDownOpenChangedCommand | Occurs when the IsHistoryEnabled property is changed. |
CustomSourceChanged | AutoCompleteCustomSourceChangedCommand | Occurs when the CustomSource property is changed. |
IsAutoAppendChanged | AutoCompleteIsAutoAppendChangedCommand | Occurs when the IsAutoAppend property is changed. |
MaxDropHeightChanged | AutoCompleteMaxDropHeightChangedCommand | Occurs when the MaxDropHeight property is changed. |
IsFilterChanged | AutoCompleteIsFilterChangedCommand | Occurs when the IsFilter property is changed. |
IsAutoCompleteItemChanged | AutoCompleteIsAutoCompleteItemChangedCommand | Occurs when the IsAutoCompleteItem property is changed. |
IsAsyncAddContentChanged | AutoCompleteIsAsyncAddContentChangedCommand | Occurs when the IsAsyncAddContent property is changed. |
TextChanged | AutoCompleteTextChangedCommand | Occurs when the Text property is changed. |
SelectionChanged | AutoCompleteSelectionChangedCommand | Occurs when the selectionItem property is changed. |
List of CalendarControl events table
Control : CalendarControl | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
AllowMultipleSelectionChanged | CalendarControlAllowMultipleSelectionChangedCommand | Occurs when the AllowMultipleSelection property is changed. |
BackgroundPropertyChanged | CalendarControlBackgroundPropertyChangedCommand | Occurs when the Background property is changed. |
CalendarChanged | CalendarControlCalendarChangedCommand | Occurs when the Calendar property is changed. |
CalendarStyleChanged | CalendarControlCalendarStyleChangedCommand | Occurs when the CalendarStyle property is changed. |
CultureChanged | CalendarControlCultureChangedCommand | Occurs when the Culture is changed. |
DateChanged | CalendarControlDateChangedCommand | Occurs when the Date property is changed. |
DateForegroundPropertyChanged | CalendarControlDateForegroundPropertyChangedCommand | Occurs when the DateForeground property is changed. |
DayForegroundChanged | CalendarControlDayForegroundChangedCommand | Occurs when the DayForeground property is changed. |
DaysAbbreviationLengthChanged | CalendarControlDaysAbbreviationLengthChangedCommand | Occurs when the DaysAbbreviationLength property is changed. |
IsDayNameAbbreviatedChanged | CalendarControlIsDayNameAbbreviatedChangedCommand | Occurs when the IsDayNameAbbreviated property is changed. |
IsMonthNameAbbreviatedChanged | CalendarControlIsMonthNameAbbreviatedChangedCommand | Occurs when the IsMonthNameAbbreviated property is changed. |
IsShowWeekNumbersChanged | CalendarControlIsShowWeekNumbersChangedCommand | Occurs when the IsShowWeekNumbers property is changed. |
MonthChangeDirectionChanged | CalendarControlMonthChangeDirectionChangedCommand | Occurs when the MonthChangeDirection property is changed. |
MouseHoverBorderBrushChanged | CalendarControlMouseHoverBorderBrushChangedCommand | Occurs when the MouseHoverBorderBrush property is changed. |
MouseHoverCellBackgroundBrushChanged | CalendarControlMouseHoverCellBackgroundBrushChangedCommand | Occurs when the MouseHoverCellBackground property is changed. |
MouseHoverCellBorderThicknessChanged | CalendarControlMouseHoverCellBorderThicknessChangedCommand | Occurs when the cell border thickness is changed. |
MouseHoverCellCornerRadiusChanged | CalendarControlMouseHoverCellCornerRadiusChangedCommand | Occurs when the cell corner radius is changed. |
MouseHoverForegroundPropertyChanged | CalendarControlMouseHoverForegroundPropertyChangedCommand | Occurs when the MouseHoverForeground property is changed. |
MouseWheel | CalendarControlMouseWheelCommand | Occurs when rotating the mouse wheel within the calendar. |
NextMonthDaysForegroundChanged | CalendarControlNextMonthDaysForegroundChangedCommand | Occurs when the NextMonthDaysForeground property is changed. |
PreviousMonthDaysForegroundChanged | CalendarControlPreviousMonthDaysForegroundChangedCommand | Occurs when the PreviousMonthDaysForeground property is changed. |
ScrollButtonFillPropertyChanged | CalendarControlScrollButtonFillPropertyChangedCommand | Occurs when the ScrollButtonFill property is changed. |
SelectedCellBackgroundChanged | CalendarControlSelectedCellBackgroundChangedCommand | Occurs when the SelectedCellBackground property is changed. |
SelectedCellBorderThicknessChanged | CalendarControlSelectedCellBorderThicknessChangedCommand | Occurs when the SelectedCellBorderThickness property is changed. |
SelectedCellCornerRadiusChanged | CalendarControlSelectedCellCornerRadiusChangedCommand | Occurs when the radius the selected cell corner radius is changed. |
SelectedCellForegroundPropertyChanged | CalendarControlSelectedCellForegroundPropertyChangedCommand | Occurs when the SelectedCellForeground property is changed. |
SelectedDateChanged | CalendarControlSelectedDateChangedCommand | Occurs when the SelectedDate property is changed. |
SelectedDatesChanged | CalendarControlSelectedDatesChangedCommand | Occurs when the SelectedDates collection is changed. |
SelectionBorderBrushChanged | CalendarControlSelectionBorderBrushChangedCommand | Occurs when the SelectionBorderBrush property is changed. |
SelectionRangeModeChanged | CalendarControlSelectionRangeModeChangedCommand | Occurs when the SelectionRangeMode property is changed. |
ShowNextMonthDaysChanged | CalendarControlShowNextMonthDaysChangedCommand | Occurs when the ShowNextMonthDays property is changed. |
ShowPreviousMonthDaysChanged | CalendarControlShowPreviousMonthDaysChangedCommand | Occurs when the ShowPreviousMonthDays property is changed. |
TodayRowIsVisibleChanged | CalendarControlTodayRowIsVisibleChangedCommand | Occurs when the TodayRowIsVisible property is changed. |
VisibleDataChanged | CalendarControlVisibleDataChangedCommand | Occurs when the VisibleData property is changed. |
List of CheckedListBox control events table
Control : CheckedListBox | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
FullRowSelectionChanged | CheckedListBoxFullRowSelectionChangedCommand | Occurs when the full row selection is changed. |
CheckOnClickChanged | CheckedListBoxCheckOnClickChangedCommand | Occurs when the CheckOnClick property is changed. |
AlignmentChanged | CheckedListBoxAlignmentChangedCommand | Occurs when the alignment is changed. |
SelectionChanged | CheckedListBoxSelectionChangedCommand | Occurs when the selected item is changed. |
CheckedItemsChanged | CheckedListBoxCheckedItemsChangedCommand | Occurs when the CheckedItems collection is changed. |
SelectedItemBackgroundChanged | CheckedListBoxSelectedItemBackgroundChangedCommand | Occurs when the SelectedItemBackground property is changed. |
ModeChanged | CheckedListBoxModeChangedCommand | Occurs when the Mode property is changed. |
MouseOverBackgroundChanged | CheckedListBoxMouseOverBackgroundChangedCommand | Occurs when the MouseOverBackground property is changed. |
CheckBoxStyleChanged | CheckedListBoxCheckBoxStyleChangedCommand | Occurs when the check box style is changed. |
List of CheckedListBoxItem control events table
Control : CheckedListBoxItem | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
IsCheckedChanged | CheckedListBoxItemIsCheckedChangedCommand | Occurs when the IsChecked property is changed. |
IsSelectedChanged | CheckedListBoxItemIsSelectedChangedCommand | Occurs when the IsSelected property is changed. |
IsMouseOverChanged | CheckedListBoxItemIsMouseOverChangedCommand | Occurs when the IsMouseOver property is changed. |
LeftImageSourceChanged | CheckedListBoxItemLeftImageSourceChangedCommand | Occurs when the left image source is changed. |
RightImageSourceChanged | CheckedListBoxItemRightImageSourceChangedCommand | Occurs when the right image source is changed. |
LeftImageWidthChanged | CheckedListBoxItemLeftImageWidthChangedCommand | Occurs when the LeftImageWidth property is changed. |
RightImageWidthChanged | CheckedListBoxItemRightImageWidthChangedCommand | Occurs when the RightImageWidth property is changed. |
LeftImageHeightChanged | CheckedListBoxItemLeftImageHeightChangedCommand | Occurs when the LeftImageHeight property is changed. |
RightImageHeightChanged | CheckedListBoxItemRightImageHeightChangedCommand | Occurs when the RightImageHeight property is changed. |
ImageVerticalAlignmentChanged | CheckedListBoxItemImageVerticalAlignmentChangedCommand | Occurs when the vertical alignment of the image is changed. |
ImageMarginChanged | CheckedListBoxItemImageMarginChangedCommand | Occurs when the ImageMargin property is changed. |
List of FileUploadControl events table
Control : FileUploadControl | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
CanOverwriteChanged | FileUploadControlCanOverwriteChangedCommand | Occurs when the CanOverwrite property is changed. |
ColumnsToHideChanged | FileUploadControlColumnsToHideChangedCommand | Occurs when the ColumnsToHide property is changed. |
EnableDetailsChanged | FileUploadControlEnableDetailsChangedCommand | Occurs when the EnableDetails property is changed. |
EnableThumbnailChanged | FileUploadControlEnableThumbnailChangedCommand | Occurs when the EnableThumbnail property is changed. |
FileCountExceededEvent | FileUploadControlFileCountExceededEventCommand | Occurs when the file count is exceeded. |
FileExistsEvent | FileUploadControlFileExistsEventCommand | Occurs when the FileExists property is changed. |
FilesSelectedEvent | FileUploadControlFilesSelectedEventCommand | Occurs when the file is selected. |
FilesTooLargeEvent | FileUploadControlFilesTooLargeEventCommand | Occurs when the file size is too large. |
FileUploadSizeChanged | FileUploadControlFileUploadSizeChangedCommand | Occurs when the FileUploadSize property is changed. |
FileUploadSizeUnitChanged | FileUploadControlFileUploadSizeUnitChangedCommand | Occurs when the FileUploadSizeUnit property is changed. |
FileUploadStartingEvent | FileUploadControlFileUploadStartingEventCommand | Occurs before the file upload starts. |
FilterChanged | FileUploadControlFilterChangedCommand | Occurs when the Filter property is changed. |
FilterIndexChanged | FileUploadControlFilterIndexChangedCommand | Occurs when the FilterIndex property is changed. |
IsAutomaticUploadChanged | FileUploadControlIsAutomaticUploadChangedCommand | Occurs when the IsAutomaticUpload property is changed. |
IsMultiSelectChanged | FileUploadControlIsMultiSelectChangedCommand | Occurs when the IsMultiSelect property is changed. |
NoOfFilesAllowedChanged | FileUploadControlNoOfFilesAllowedChangedCommand | Occurs when the NoOfFilesAllowed property is changed. |
ThemeChanged | FileUploadControlThemeChangedCommand | Occurs when the theme is changed. |
TotalPercentageUploadedChanged | FileUploadControlTotalPercentageUploadedChangedCommand | Occurs when the TotalPercentageUploaded property is changed. |
TotalSizeUploadedChanged | FileUploadControlTotalSizeUploadedChangedCommand | Occurs when the TotalSizeUploaded property is changed. |
TotalUploadSizeChanged | FileUploadControlTotalUploadSizeChangedCommand | Occurs when the TotalUploadSize property is changed. |
TotalUploadSizeExceededEvent | FileUploadControlTotalUploadSizeExceededEventCommand | Occurs when the total upload size exceeds. |
TotalUploadSizeUnitChanged | FileUploadControlTotalUploadSizeUnitChangedCommand | Occurs when the TotalUploadSizeUnit property is changed. |
UploadFinishedEvent | FileUploadControlUploadFinishedEventCommand | Occurs when the upload is finished. |
UploadFolderChanged | FileUploadControlUploadFolderChangedCommand | Occurs when the Upload folder is changed. |
UploadPausedEvent | FileUploadControlUploadPausedEventCommand | Occurs when the upload is paused. |
UploadResumedEvent | FileUploadControlUploadResumedEventCommand | Occurs when the upload is resumed. |
GroupBar control event table
Control : GroupBar | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionChanged | GroupBarSelectionChangedCommand | Occurs when the selected group bar item changed. |
List of GroupBarItem control events table
Control : GroupBarItem | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ExpandedChanged | GroupBarItemExpandedChangedCommand | Occurs when the group bar item is expanded. |
ImageWidthChanged | GroupBarItemImageWidthChangedCommand | Occurs when the ImageWidth property is changed. |
ImageHeightChanged | GroupBarItemImageHeightChangedCommand | Occurs when the ImageHeight property is changed. |
BorderBrushChanged | GroupBarItemBorderBrushChangedCommand | Occurs when the BorderBrush property is changed. |
BorderThicknessChanged | GroupBarItemBorderThicknessChangedCommand | Occurs when the BorderThickness property is changed. |
List of HierarchyNavigator control events table
Control : HierarchyNavigator | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ContentDropDownItemSelected | HierarchyNavigatorBarContentDropDownItemSelectedCommand | Occurs when the content drop-down item is selected. |
ContentNavigationPopupShowHideClick | HierarchyNavigatorBarContentNavigationPopupShowHideClickCommand | Occurs when the content navigation popup show/hide is clicked. |
List of HierarchyNavigator control events table
Control : HierarchyNavigator | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
HierarchyNavigatorRefreshButtonClick | HierarchyNavigatorHierarchyNavigatorRefreshButtonClickCommand | Occurs when the HierarchyNavigatorRefresh button is clicked. |
HierarchyNavigatorSelectedItemChanged | HierarchyNavigatorHierarchyNavigatorSelectedItemChangedCommand | Occurs when the SelectedItem property is changed. |
NavigationPopupOpened | HierarchyNavigatorNavigationPopupOpenedCommand | Occurs after the Navigation pop-up menu is opened. |
NavigationPopupOpening | HierarchyNavigatorNavigationPopupOpeningCommand | Occurs before the navigation pop-up menu opens. |
NavigationPopupClosing | HierarchyNavigatorNavigationPopupClosingCommand | Occurs before the navigation pop-up menu closes. |
NavigationPopupClosed | HierarchyNavigatorNavigationPopupClosedCommand | Occurs after the navigation pop-up menu is closed. |
List of HierarchyNavigatorItem control events table
Control : HierarchyNavigatorItems | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
HierarchyNavigatorRefreshButtonClick | HierarchyNavigatorItemsControlHierarchyNavigatorRefreshButtonClickCommand | Occurs when the HierarchyNavigator Refresh button is clicked. |
HierarchyNavigatorSelectedItemChanged | HierarchyNavigatorItemsControlHierarchyNavigatorSelectedItemChangedCommand | Occurs when the SelectedItem property is changed. |
NavigationPopupOpening | HierarchyNavigatorItemsControlNavigationPopupOpeningCommand | Occurs before the Navigation pop-up menu opens. |
NavigationPopupOpened | HierarchyNavigatorItemsControlNavigationPopupOpenedCommand | Occurs after the Navigation pop-up menu is opened. |
NavigationPopupClosing | HierarchyNavigatorItemsControlNavigationPopupClosingCommand | Occurs before the Navigation pop-up menu closes. |
NavigationPopupClosed | HierarchyNavigatorItemsControlNavigationPopupClosedCommand | Occurs after the Navigation pop-up menu is closed. |
List of HTMLHostControl events table
Control : HTMLHostControl | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
UrlSourceChanged | HtmlHostUrlSourceChangedCommand | Occurs when the UrlSource property is changed. |
HtmlSourceChanged | HtmlHostHtmlSourceChangedCommand | Occurs when the HtmlSource property is changed. |
FrameOpacityChanged | HtmlHostFrameOpacityChangedCommand | Occurs when the FrameOpacity property is changed. |
List of RangeSliderControl events table
Control : RangeSliderControl | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
RangeChanged | RangeSliderRangeChangedCommand | Occurs when the range value is changed. |
ValueChanged | RangeSliderValueChangedCommand | Occurs when the Value property is changed. |
List of TabControlAdv control events table
Control : TabControlAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
TabItemStyleChanged | TabControlAdvTabItemStyleChangedCommand | Occurs when the tab item style is changed. |
SelectedIndexChanged | TabControlAdvSelectedIndexChangedCommand | Occurs when the SelectedIndex property is changed |
SelectedItemChanged | TabControlAdvSelectedItemChangedCommand | Occurs when the SelectedItem property is changed |
TabStripPlacementChanged | TabControlAdvTabStripPlacementChangedCommand | Occurs when the TabStripPlacement property is changed. |
ScrollingTimeChanged | TabControlAdvScrollingTimeChangedCommand | Occurs when the ScrollingTime property is changed. |
IsAllTabsClosedChanged | TabControlAdvIsAllTabsClosedChangedCommand | Occurs when the IsAllTabsClosed property is changed. |
EnableLabelEditChanged | TabControlAdvEnableLabelEditChangedCommand | Occurs when the EnableLabelEdit property is changed. |
ShowTabListContextMenuChanged | TabControlAdvShowTabListContextMenuChangedCommand | Occurs when the ShowTabListContextMenu property is changed. |
CloseButtonTypeChanged | TabControlAdvCloseButtonTypeChangedCommand | Occurs when the CloseButtonType property is changed. |
HotTrackingEnabledChanged | TabControlAdvHotTrackingEnabledChangedCommand | Occurs when the HotTrackingEnabled property is changed. |
RotateTextWhenVerticalChanged | TabControlAdvRotateTextWhenVerticalChangedCommand | Occurs when the RotateTextWhenVertical property is changed. |
TabPanelStyleChanged | TabControlAdvTabPanelStyleChangedCommand | Occurs when the tab panel style is changed. |
TabScrollButtonVisibilityChanged | TabControlAdvTabScrollButtonVisibilityChangedCommand | Occurs when the TabScrollButtonVisibility property is changed. |
TabScrollStyleChanged | TabControlAdvTabScrollStyleChangedCommand | Occurs when the tab scroll style is changed. |
TabItemLayoutChanged | TabControlAdvTabItemLayoutChangedCommand | Occurs when the TabItemLayout property is changed. |
TabItemSizeModeChanged | TabControlAdvTabItemSizeModeChangedCommand | Occurs when the TabItemSizeMode property is changed. |
KeepTabInFrontChanged | TabControlAdvKeepTabInFrontChangedCommand | Occurs when the KeepTabInFront property is changed. |
SelectedItemFontWeightChanged | TabControlAdvSelectedItemFontWeightChangedCommand | Occurs when the SelectedItemFontWeight property is changed. |
TabClosing | TabControlAdvTabClosingCommand | Occurs before the tab closes. |
BeforeLabelEdit | TabControlAdvBeforeLabelEditCommand | Occurs when the BeforeLabelEdit property is changed. |
AfterLabelEdit | TabControlAdvAfterLabelEditCommand | Occurs when the AfterLabelEdit property is changed. |
DropDownContextMenuOpen | TabControlAdvDropDownContextMenuOpenCommand | Occurs when the drop-down context menu is opened. |
DropDownContextMenuClose | TabControlAdvDropDownContextMenuCloseCommand | Occurs when the drop-down context menu is closed. |
DragStart | TabControlAdvDragStartCommand | Occurs when the dragging is started. |
DragEnd | TabControlAdvDragEndCommand | Occurs when the dragging is ended. |
AllowDragDropChanged | TabControlAdvAllowDragDropChangedCommand | Occurs when the AllowDragDrop property is changed. |
TabItemOpenModeChanged | TabControlAdvTabItemOpenModeChangedCommand | Occurs when the TabItemOpenMode property is changed. |
List of TabItemAdv control events table
Control : TabItemAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
HasHeaderChanged | TabItemAdvHasHeaderChangedCommand | Occurs when the HasHeader property is changed. |
HeaderChanged | TabItemAdvHeaderChangedCommand | Occurs when the Header property is changed. |
IsSelectedChanged | TabItemAdvIsSelectedChangedCommand | Occurs when the IsSelected property is changed. |
HoverBackgroundChanged | TabItemAdvHoverBackgroundChangedCommand | Occurs when the HoverBackground property is changed. |
ImageAlignmentChanged | TabItemAdvImageAlignmentChangedCommand | Occurs when the ImageAlignment property is changed. |
HeaderAlignmentChanged | TabItemAdvHeaderAlignmentChangedCommand | Occurs when the HeaderAlignment property is changed. |
ImageChanged | TabItemAdvImageChangedCommand | Occurs when the Image property is changed. |
TaskBar control event table
Control : TaskBar | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
GroupOrientationChanged | TaskBarGroupOrientationChangedCommand | Occurs when the GroupOrientation property is changed. |
List of TaskBarItem control events table
Control : TaskBarItem | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ArrowStyleChanged | TaskBarItemArrowStyleChangedCommand | Occurs when the arrow style is changed. |
HeaderHeightChanged | TaskBarItemHeaderHeightChangedCommand | Occurs when the HeaderHeight property is changed. |
IsExpandedChanged | TaskBarItemIsExpandedChangedCommand | Occurs when the IsExpanded property is changed. |
IsHeaderShownChanged | TaskBarItemIsHeaderShownChangedCommand | Occurs when the IsHeaderShown property is changed. |
List of TreeViewAdv control events table
Control : TreeViewAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Expanding | TreeViewAdvExpandingCommand | Occurs before expanding items of the TreeViewAdv control. |
Collapsing | TreeViewAdvCollapsingCommand | Occurs before collapsing items of the TreeViewAdv control. |
NodeEditing | TreeViewAdvNodeEditingCommand | Occurs before the node is get edited. |
NodeEdited | TreeViewAdvNodeEditedCommand | Occurs after the node is edited. |
NodeEditCancelled | TreeViewAdvNodeEditCancelledCommand | Occurs when the node editing is cancelled. |
NodeEditorValidateString | TreeViewAdvNodeEditorValidateStringCommand | Occurs when the NodeEditorValidateString property is changed. |
NodeEditorValidating | TreeViewAdvNodeEditorValidatingCommand | Occurs before the node editor is validated. |
NodeEditorValidated | TreeViewAdvNodeEditorValidatedCommand | Occurs after the node editor is validated. |
LoadOnDemand | TreeViewAdvLoadOnDemandCommand | Occurs when the LoadOnDemand property is changed |
DragStarted | TreeViewAdvDragStartedCommand | Occurs when the dragging is started. |
DragQuery | TreeViewAdvDragQueryCommand | Occurs when the Drag is in Query. |
DragDrop | TreeViewAdvDragDropCommand | Occurs when the DragDrop property is changed. |
SelectOnExpandChangeChanged | TreeViewAdvSelectOnExpandChangeChangedCommand | Occurs when the SelectOnExpandChange property is changed. |
SelectedItemChanged | TreeViewAdvSelectedItemChangedCommand | Occurs when the SelectedItem property is changed. |
SelectedNodeChanged | TreeViewAdvSelectedNodeChangedCommand | Occurs when the SelectedNode property is changed. |
IsInEditModeChanged | TreeViewAdvIsInEditModeChangedCommand | Occurs when the IsInEditMode property is changed. |
SortModeChanged | TreeViewAdvSortModeChangedCommand | Occurs when the SortMode property is changed. |
DraggingEnabledChanged | TreeViewAdvDraggingEnabledChangedCommand | Occurs when the DraggingEnabled property is changed. |
IsMultiSelectChanged | TreeViewAdvIsMultiSelectChangedCommand | Occurs when the IsMultiSelect property is changed. |
SelectedNodesChanged | TreeViewAdvSelectedNodesChangedCommand | Occurs when the SelectedNodes collection is changed. |
SelectedItemsChanged | TreeViewAdvSelectedItemsChangedCommand | Occurs when the SelectedItems collection is changed. |
LineStrokeArrayChanged | TreeViewAdvLineStrokeArrayChangedCommand | Occurs when the LineStrokeArray property is changed. |
RootLineStrokeChanged | TreeViewAdvRootLineStrokeChangedCommand | Occurs when the RootLineStroke property is changed. |
RootLineVisibilityChanged | TreeViewAdvRootLineVisibilityChangedCommand | Occurs when the RootLineVisibility property is changed. |
DragLineVisibilityChanged | TreeViewAdvDragLineVisibilityChangedCommand | Occurs when the DragLineVisibility property is changed. |
DragLineColorChanged | TreeViewAdvDragLineColorChangedCommand | Occurs when the DragLineColor property is changed. |
ThemeChanged | TreeViewAdvThemeChangedCommand | Occurs when the theme is changed. |
ScrollingSpeedChanged | TreeViewAdvScrollingSpeedChangedCommand | Occurs when the ScrollingSpeed property is changed. |
ExpanderTemplateChanged | TreeViewAdvExpanderTemplateChangedCommand | Occurs when the expander template is changed. |
ContextMenuOpening | TreeViewAdvContextMenuOpeningCommand | Occurs before the context menu is opened. |
List of TreeViewItemAdv control events table
Control : TreeViewItemAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Expanding | TreeViewItemAdvExpandingCommand | Occurs before expanding TreeViewAdv items. |
Collapsing | TreeViewItemAdvCollapsingCommand | Occurs before collapsing TreeViewAdv items. |
HasItemsChanged | TreeViewItemAdvHasItemsChangedCommand | Occurs when the HasItems property is changed. |
HeaderChanged | TreeViewItemAdvHeaderChangedCommand | Occurs when the Header property is changed. |
IsExpandedChanged | TreeViewItemAdvIsExpandedChangedCommand | Occurs when the IsExpanded property is changed. |
IsMouseOverChanged | TreeViewItemAdvIsMouseOverChangedCommand | Occurs when the IsMouseOver property is changed. |
IsSelectedChanged | TreeViewItemAdvIsSelectedChangedCommand | Occurs when the IsSelected property is changed. |
SelectOnExpandChangeChanged | TreeViewItemAdvSelectOnExpandChangeChangedCommand | Occurs when the SelectOnExpand property is changed. |
LeftImageSourceChanged | TreeViewItemAdvLeftImageSourceChangedCommand | Occurs when the LeftImageSource property is changed. |
RightImageSourceChanged | TreeViewItemAdvRightImageSourceChangedCommand | Occurs when the RightImageSource property is changed. |
LeftImageWidthChanged | TreeViewItemAdvLeftImageWidthChangedCommand | Occurs when the LeftImageWidth property is changed. |
RightImageWidthChanged | TreeViewItemAdvRightImageWidthChangedCommand | Occurs when the RightImageWidth property is changed. |
LeftImageHeightChanged | TreeViewItemAdvLeftImageHeightChangedCommand | Occurs when the LeftImageHeight property is changed. |
RightImageHeightChanged | TreeViewItemAdvRightImageHeightChangedCommand | Occurs when the RightImageHeight property is changed. |
ImageHorizontalAlignmentChanged | TreeViewItemAdvImageHorizontalAlignmentChangedCommand | Occurs when the ImageHorizontalAlignment property is changed. |
ImageVerticalAlignmentChanged | TreeViewItemAdvImageVerticalAlignmentChangedCommand | Occurs when the ImageVerticalAlignment property is changed. |
ImageMarginChanged | TreeViewItemAdvImageMarginChangedCommand | Occurs when the ImageMargin property is changed. |
TextHorizontalAlignmentChanged | TreeViewItemAdvTextHorizontalAlignmentChangedCommand | Occurs when the TextHorizontalAlignment property is changed. |
TextVerticalAlignmentChanged | TreeViewItemAdvTextVerticalAlignmentChangedCommand | Occurs when the TextVerticalAlignment property is changed. |
TextMarginChanged | TreeViewItemAdvTextMarginChangedCommand | Occurs when the TextMargin property is changed. |
ExpanderTemplateChanged | TreeViewItemAdvExpanderTemplateChangedCommand | Occurs when the ExpanderTemplate is changed |
CollapseImageSourceChanged | TreeViewItemAdvCollapseImageSourceChangedCommand | Occurs when the CollapseImageSource property is changed. |
ExpandImageSourceChanged | TreeViewItemAdvExpandImageSourceChangedCommand | Occurs when the ExpandImageSource property is changed. |
CollapseImageWidthChanged | TreeViewItemAdvCollapseImageWidthChangedCommand | Occurs when the CollapseImageWidth property is changed. |
CollapseImageHeightChanged | TreeViewItemAdvCollapseImageHeightChangedCommand | Occurs when the CollapseImageHeight property is changed. |
ExpandImageWidthChanged | TreeViewItemAdvExpandImageWidthChangedCommand | Occurs when the ExpandImageWidth property is changed |
ExpandImageHeightChanged | TreeViewItemAdvExpandImageHeightChangedCommand | Occurs when the ExpandImageHeight property is changed. |
List of DomainUpDown control events table
Control : DomainUpDown | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
CornerRadiusChanged | DomainUpDownCornerRadiusChangedCommand | Occurs when the CornerRadius property is changed. |
FlowDirectionChanged | DomainUpDownFlowDirectionChangedCommand | Occurs when the FlowDirection property is changed. |
TextAlignmentChanged | DomainUpDownTextAlignmentChangedCommand | Occurs when the TextAlignment property is changed. |
ValueChanged | DomainUpDownValueChangedCommand | Occurs when the Value property is changed. |
List of NumericUpDown control events table
Control : NumericUpDown | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Tools.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionChanged | NumericUpDownSelectionChangedCommand | Occurs when the Selectedvalue property is changed. |
AllowEditChanged | NumericUpDownAllowEditChangedCommand | Occurs when the AllowEdit property is changed. |
CornerRadiusChanged | NumericUpDownCornerRadiusChangedCommand | Occurs when the CornerRadius property is changed. |
DownButtonTemplateChanged | NumericUpDownDownButtonTemplateChangedCommand | Occurs when the down-button template is changed. |
FlowDirectionChanged | NumericUpDownFlowDirectionChangedCommand | Occurs when the FlowDirection property is changed. |
ForegroundChanged | NumericUpDownForegroundChangedCommand | Occurs when the Foreground property is changed. |
IntervalChanged | NumericUpDownIntervalChangedCommand | Occurs when the Interval property is changed. |
IsFocusedChanged | NumericUpDownIsFocusedChangedCommand | Occurs when the IsFocused property is changed. |
MaxValueChanged | NumericUpDownMaxValueChangedCommand | Occurs when the MaxValue property is changed. |
MinValueChanged | NumericUpDownMinValueChangedCommand | Occurs when the MinValue property is changed. |
NegativeForegroundChanged | NumericUpDownNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
TextAlignmentChanged | NumericUpDownTextAlignmentChangedCommand | Occurs when the TextAlignment property is changed. |
ValueChanged | NumericUpDownValueChangedCommand | Occurs when the Value property is changed. |
TextChanged | NumericUpDownTextChangedCommand | Occurs when the Text property is changed. |
UpButtonTemplateChanged | NumericUpDownUpButtonTemplateChangedCommand | Occurs when the up-button template is changed. |
List of BrushSelector control events table
Control : BrushSelector | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectedBrushChanged | BrushSelectorSelectedBrushChangedCommand | Occurs when the SelectedBrush property is changed. |
BrushModeChanged | BrushSelectorBrushModeChangedCommand | Occurs when the BrushMode property is changed. |
EnableGradientToSolidSwitchChanged | BrushSelectorEnableGradientToSolidSwitchChangedCommand | Occurs when the EnableGradientToSolidSwitch property is changed. |
VisualizationStyleChanged | BrushSelectorVisualizationStyleChangedCommand | Occurs when the visualization style is changed. |
List of BusyIndicator control events table
Control : BusyIndicator | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
IsBusyChanged | BusyIndicatorIsBusyChangedCommand | Occurs when the IsBusy property is changed. |
DescriptionPlacementChanged | BusyIndicatorDescriptionPlacementChangedCommand | Occurs when the DescriptionPlacement property is changed. |
ProgressValueChanged | BusyIndicatorProgressValueChangedCommand | Occurs when the ProgressValue property is changed. |
EnableGrayScaleEffectChanged | BusyIndicatorEnableGrayScaleEffectChangedCommand | Occurs when the EnableGrayScaleEffect is changed. |
CancelClick | BusyIndicatorCancelClickCommand | Occurs when the cancel button is clicked. |
Closing | BusyIndicatorClosingCommand | Occurs before closing the busy indicator. |
Closed | BusyIndicatorClosedCommand | Occurs after the busy indicator is closed. |
List of ButtonControl events table
Control : ButtonControls | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Checked | ButtonAdvCheckedCommand | Occurs when the Checked property is changed. |
Click | ButtonAdvClickCommand | Occurs when the button is clicked. |
List of DropDownButton control events table
Control : DropDownButton | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
DropDownOpening | DropDownButtonAdvDropDownOpeningCommand | Occurs before the drop-down menu opens. |
DropDownOpened | DropDownButtonAdvDropDownOpenedCommand | Occurs after the drop-down menu is opened. |
DropDownClosing | DropDownButtonAdvDropDownClosingCommand | Occurs before drop-down menu closes. |
DropDownClosed | DropDownButtonAdvDropDownClosedCommand | Occurs after the drop-down menu closes. |
List of DropDown control events table
Control : DropDown | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
IsOpenChanged | DropDownIsOpenChangedCommand | Occurs when the IsOpen property is changed. |
OutsideRectMouseMove | DropDownOutsideRectMouseMoveCommand | Occurs when the mouse moves outside the rectangle. |
OutsideRectMouseDown | DropDownOutsideRectMouseDownCommand | Occurs when the mouse is clicked outside the rectangle. |
SplitButton control event table
Control : SplitButtonAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | SplitButtonAdvClickCommand | Occurs when the Split button is clicked. |
List of Carousel control events table
Control : Carousel | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionChanged | CarouselSelectionChangedCommand | Occurs when the SelectedItem property is changed. |
SelectedIndexChanged | CarouselSelectedIndexChangedCommand | Occurs when the SelectedIndex property is changed. |
SelectedValueChanged | CarouselSelectedValueChangedCommand | Occurs when the SelectedValue property is changed. |
List of ColorPickerPalette control events table
Control : ColorPickerPalette | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ColorChanged | ColorPickerPaletteColorChangedCommand | Occurs when the Color property is changed. |
PopupHeightChanged | ColorPickerPalettePopupHeightChangedCommand | Occurs when the PopupHeight property is changed. |
DropDownOpened | ColorPickerPaletteDropDownOpenedCommand | Occurs after the drop-down menu is opened. |
List of ComboBoxAdv control events table
Control : ComboBoxAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionChanged | ComboBoxAdvSelectionChangedCommand | Occurs when the SelectedItem property is changed. |
DropDownClosed | ComboBoxAdvDropDownClosedCommand | Occurs after the drop-down menu is closed. |
DropDownOpened | ComboBoxAdvDropDownOpenedCommand | Occurs after the drop-down menu is opened. |
List of ContextMenuAdv control events table
Control : ContextMenuAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ContextMenuAdvOpened | ContextMenuAdvOpenedCommand | Occurs when ContextMenuAdv is opened. |
ContextMenuAdvClosed | ContextMenuAdvClosedCommand | Occurs when the ContextMenuAdv is closed. |
List of DataPagerAdv control events table
Control : DataPagerAdv | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
PageIndexChanging | DataPagerExtPageIndexChangingCommand | Occurs before the PageIndex property is changed. |
PageIndexChanged | DataPagerExtPageIndexChangedCommand | Occurs after the PageIndex property is changed. |
OnDemandDataSourceLoad | DataPagerExtOnDemandDataSourceLoadCommand | Occurs when the OnDemandDataSource property is changed. |
List of DataTimeBase control events table
Control : DateTimeBase | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
IsDropDownOpenChanged | DateTimeBaseIsDropDownOpenChangedCommand | Occurs when the IsDropDownOpen property is changed. |
UnderlyingDateTimeChanged | DateTimeBaseUnderlyingDateTimeChangedCommand | Occurs when the UnderlyingDateTime property is changed. |
IsScrollingOnCircleChanged | DateTimeBaseIsScrollingOnCircleChangedCommand | Occurs when the IsScrollingOnCircle property is changed. |
CustomPatternChanged | DateTimeBaseCustomPatternChangedCommand | Occurs when the CustomPattern property is changed. |
PatternChanged | DateTimeBasePatternChangedCommand | Occurs when the Pattern property is changed. |
IsEmptyDateEnabledChanged | DateTimeBaseIsEmptyDateEnabledChangedCommand | Occurs when the IsEmptyDateEnabled property is changed. |
IsButtonPopUpEnabledChanged | DateTimeBaseIsButtonPopUpEnabledChangedCommand | Occurs when the IsButtonPopUpEnabled property is changed. |
IsCalendarEnabledChanged | DateTimeBaseIsCalendarEnabledChangedCommand | Occurs when the IsCalendarEnabled property is changed |
IsVisibleRepeatButtonChanged | DateTimeBaseIsVisibleRepeatButtonChangedCommand | Occurs when the IsVisibleRepeatButton property is changed. |
RepeatButtonBackgroundChanged | DateTimeBaseRepeatButtonBackgroundChangedCommand | Occurs when the RepeatButtonBackground property is changed. |
RepeatButtonBorderBrushChanged | DateTimeBaseRepeatButtonBorderBrushChangedCommand | Occurs when the RepeatButtonBorderBrush property is changed. |
RepeatButtonBorderThicknessChanged | DateTimeBaseRepeatButtonBorderThicknessChangedCommand | Occurs when the RepeatButtonBorderThickness property is changed. |
UpRepeatButtonMarginChanged | DateTimeBaseUpRepeatButtonMarginChangedCommand | Occurs when the UpRepeatButtonMargin property is changed. |
DownRepeatButtonMarginChanged | DateTimeBaseDownRepeatButtonMarginChangedCommand | Occurs when the DownRepeatButtonMargin property is changed. |
UpRepeatButtonTemplateChanged | DateTimeBaseUpRepeatButtonTemplateChangedCommand | Occurs when the UpRepeatButtonTemplate property is changed. |
DownRepeatButtonTemplateChanged | DateTimeBaseDownRepeatButtonTemplateChangedCommand | Occurs when the down-repeat button template is changed. |
CultureInfoChanged | DateTimeBaseCultureInfoChangedCommand | Occurs when the culture information is changed. |
List of DateTimeEdit control events table
Control : DateTimeEdit | ||
NameSpace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
CalendarPopupOpened | DateTimeEditCalendarPopupOpenedCommand | Occurs when the Calendar pop-up menu is opened. |
DateTimeChanged | DateTimeEditDateTimeChangedCommand | Occurs when the DateTime property is changed. |
MaxDateTimeChanged | DateTimeEditMaxDateTimeChangedCommand | Occurs when the MaxDateTime property is changed. |
MinDateTimeChanged | DateTimeEditMinDateTimeChangedCommand | Occurs when the MinDateTime property is changed. |
List of DockingManager control events table
Control : DockingManager | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
DockingManager_loaded | DockingManagerDockingManager_loadedCommand | Occurs when the docking manager is loaded. |
CanClosePropertyChanged | DockingManagerCanClosePropertyChangedCommand | Occurs when the CanClose property is changed. |
CanResizePropertyChanged | DockingManagerCanResizePropertyChangedCommand | Occurs when the CanResize property is changed. |
ActiveWindowChanged | DockingManagerActiveWindowChangedCommand | Occurs when the active window is changed. |
PreviewWindowClosed | DockingManagerPreviewWindowClosedCommand | Occurs when the Preview window is closed. |
WindowClosed | DockingManagerWindowClosedCommand | Occurs when the window is closed. |
PreviewWindowPinned | DockingManagerPreviewWindowPinnedCommand | Occurs when the Preview window is pinned. |
WindowPinned | DockingManagerWindowPinnedCommand | Occurs when the window is pinned. |
PreviewWindowUnPinned | DockingManagerPreviewWindowUnPinnedCommand | Occurs when the Preview window is unpinned. |
WindowUnPinned | DockingManagerWindowUnPinnedCommand | Occurs when the window is unpinned. |
DragAllow | DockingManagerDragAllowCommand | Occurs when the DragAllow property is changed. |
DockAllow | DockingManagerDockAllowCommand | Occurs when the DockAllow property is changed. |
DockStateChanged | DockingManagerDockStateChangedCommand | Occurs after the dock state is changed. |
DockStateChanging | DockingManagerDockStateChangingCommand | Occurs before the dock state is changed. |
InitializeControlOnLoad | DockingManagerInitializeControlOnLoadCommand | Occurs when initializing the control. |
DockContextMenu | DockingManagerDockContextMenuCommand | Occurs when the DockContextMenu property is changed. |
Maximized | DockingManagerMaximizedCommand | Occurs when the window is maximized. |
Maximizing | DockingManagerMaximizingCommand | Occurs before the window is being maximized. |
AutoHideTabContextMenuOpen | DockingManagerAutoHideTabContextMenuOpenCommand | Occurs when the AutoHideTab context menu is opened. |
List of CurrencyTextBox control events table
Control : CurrencyTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
MinValueChanged | CurrencyTextBoxMinValueChangedCommand | Occurs when the MinValue property is changed. |
CurrencySymbolPositionChanged | CurrencyTextBoxCurrencySymbolPositionChangedCommand | Occurs when the CurrencySymbolPosition property is changed. |
ValueChanged | CurrencyTextBoxValueChangedCommand | Occurs when the Value property is changed. |
MaxValueChanged | CurrencyTextBoxMaxValueChangedCommand | Occurs when the MaxValue property is changed. |
CurrencyDecimalDigitsChanged | CurrencyTextBoxCurrencyDecimalDigitsChangedCommand | Occurs when the CurrencyDecimalDigits property is changed. |
CurrencyDecimalSeparatorChanged | CurrencyTextBoxCurrencyDecimalSeparatorChangedCommand | Occurs when the CurrencyDecimalSeparator property is changed. |
CurrencyGroupSeparatorChanged | CurrencyTextBoxCurrencyGroupSeparatorChangedCommand | Occurs when the CurrencyGroupSeparator property is changed. |
CurrencyGroupSizesChanged | CurrencyTextBoxCurrencyGroupSizesChangedCommand | Occurs when the CurrencyGroupSizes property is changed. |
CurrencyNegativePatternChanged | CurrencyTextBoxCurrencyNegativePatternChangedCommand | Occurs when the CurrencyNegativePattern property is changed. |
CurrencyPositivePatternChanged | CurrencyTextBoxCurrencyPositivePatternChangedCommand | Occurs when the CurrencyPositivePattern property is changed. |
CurrencySymbolChanged | CurrencyTextBoxCurrencySymbolChangedCommand | Occurs when the CurrencySymbol property is changed. |
CultureChanged | CurrencyTextBoxCultureChangedCommand | Occurs when the culture is changed. |
TextSelectionOnFocusChanged | CurrencyTextBoxTextSelectionOnFocusChangedCommand | Occurs when the TextSelectionOnFocus property is changed. |
EnterToMoveNextChanged | CurrencyTextBoxEnterToMoveNextChangedCommand | Occurs when the EnterToMoveNext property is changed. |
IsUndoEnabledChanged | CurrencyTextBoxIsUndoEnabledChangedCommand | Occurs when the IsUndoEnabled property is changed. |
IsValueNegativeChanged | CurrencyTextBoxIsValueNegativeChangedCommand | Occurs when the IsValueNegative property is changed. |
NegativeForegroundChanged | CurrencyTextBoxNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
NumberFormatChanged | CurrencyTextBoxNumberFormatChangedCommand | Occurs when the NumberFormat property is changed. |
WaterMarkTemplateChanged | CurrencyTextBoxWaterMarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WaterMarkTextChanged | CurrencyTextBoxWaterMarkTextChangedCommand | Occurs when the WaterMarkText property is changed. |
SelectionChanged | CurrencyTextBoxSelectionChangedCommand | Occurs when the selection is changed. |
List of DoubleTextBox control events table
Control : DoubleTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
MinValueChanged | DoubleTextBoxMinValueChangedCommand | Occurs when the MinValue property is changed. |
ValueChanged | DoubleTextBoxValueChangedCommand | Occurs before the Value property is changed. |
ValueChanging | DoubleTextBoxValueChangingCommand | Occurs after the Value property is changed. |
MaxValueChanged | DoubleTextBoxMaxValueChangedCommand | Occurs when the MaxValue property is changed. |
NumberDecimalDigitsChanged | DoubleTextBoxNumberDecimalDigitsChangedCommand | Occurs when the NumberDecimalDigits property is changed. |
NumberDecimalSeparatorChanged | DoubleTextBoxNumberDecimalSeparatorChangedCommand | Occurs when the NumberDecimalSeparator property is changed. |
NumberGroupSizesChanged | DoubleTextBoxNumberGroupSizesChangedCommand | Occurs when the NumberGroupSizes property is changed. |
NumberGroupSeparatorChanged | DoubleTextBoxNumberGroupSeparatorChangedCommand | Occurs when the NumberGroupSeparator property is changed. |
MinimumNumberDecimalDigitsChanged | DoubleTextBoxMinimumNumberDecimalDigitsChangedCommand | Occurs when the MinimumNumberDecimalDigits property is changed. |
MaximumNumberDecimalDigitsChanged | DoubleTextBoxMaximumNumberDecimalDigitsChangedCommand | Occurs when the MaximumNumberDecimalDigits property is changed. |
CultureChanged | DoubleTextBoxCultureChangedCommand | Occurs when the culture is changed. |
TextSelectionOnFocusChanged | DoubleTextBoxTextSelectionOnFocusChangedCommand | Occurs when the text selection is being focused. |
EnterToMoveNextChanged | DoubleTextBoxEnterToMoveNextChangedCommand | Occurs when the EnterToMoveNext property is changed. |
IsUndoEnabledChanged | DoubleTextBoxIsUndoEnabledChangedCommand | Occurs when the IsUndoEnabled property is changed. |
IsValueNegativeChanged | DoubleTextBoxIsValueNegativeChangedCommand | Occurs when the IsValueNegative property is changed. |
NegativeForegroundChanged | DoubleTextBoxNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
NumberFormatChanged | DoubleTextBoxNumberFormatChangedCommand | Occurs when the NumberFormat property is changed. |
WaterMarkTemplateChanged | DoubleTextBoxWaterMarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WaterMarkTextChanged | DoubleTextBoxWaterMarkTextChangedCommand | Occurs when the WaterMarkText property is changed. |
SelectionChanged | DoubleTextBoxSelectionChangedCommand | Occurs when the selection is changed. |
List of EditorBase control events table
Control : EditorBase | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
CultureChanged | EditorBaseCultureChangedCommand | Occurs when the culture is changed. |
NumberFormatChanged | EditorBaseNumberFormatChangedCommand | Occurs when the NumberFormat property is changed. |
WaterMarkTemplateChanged | EditorBaseWaterMarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WaterMarkTextChanged | EditorBaseWaterMarkTextChangedCommand | Occurs when the WaterMarkText property is changed. |
IsUndoEnabledChanged | EditorBaseIsUndoEnabledChangedCommand | Occurs when the IsUndoEnabled property is changed. |
TextSelectionOnFocusChanged | EditorBaseTextSelectionOnFocusChangedCommand | Occurs when the text is selected to focus. |
NegativeForegroundChanged | EditorBaseNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
IsValueNegativeChanged | EditorBaseIsValueNegativeChangedCommand | Occurs when the IsValueNegative property is changed. |
EnterToMoveNextChanged | EditorBaseEnterToMoveNextChangedCommand | Occurs when the EnterToMoveNext property is changed. |
SelectionChanged | EditorBaseSelectionChangedCommand | Occurs when the selection is changed. |
List of IntegerTextBox control events table
Control : IntegerTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
MinValueChanged | IntegerTextBoxMinValueChangedCommand | Occurs when the MinValue property is changed. |
ValueChanged | IntegerTextBoxValueChangedCommand | Occurs when the Value property is changed. |
MaxValueChanged | IntegerTextBoxMaxValueChangedCommand | Occurs when the MaxValue property is changed. |
NumberGroupSizesChanged | IntegerTextBoxNumberGroupSizesChangedCommand | Occurs when the NumberGroupSizes property is changed. |
NumberGroupSeparatorChanged | IntegerTextBoxNumberGroupSeparatorChangedCommand | Occurs when the NumberGroupSeparator property is changed. |
CultureChanged | IntegerTextBoxCultureChangedCommand | Occurs when the culture is changed. |
TextSelectionOnFocusChanged | IntegerTextBoxTextSelectionOnFocusChangedCommand | Occurs when the text is selected to focus. |
EnterToMoveNextChanged | IntegerTextBoxEnterToMoveNextChangedCommand | Occurs when pressing the Enter key to move the focus to next. |
IsUndoEnabledChanged | IntegerTextBoxIsUndoEnabledChangedCommand | Occurs when the IsUndoEnabled property is changed. |
IsValueNegativeChanged | IntegerTextBoxIsValueNegativeChangedCommand | Occurs when the IsValueNegative property is changed. |
NegativeForegroundChanged | IntegerTextBoxNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
NumberFormatChanged | IntegerTextBoxNumberFormatChangedCommand | Occurs when the NumberFormat property is changed. |
WaterMarkTemplateChanged | IntegerTextBoxWaterMarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WaterMarkTextChanged | IntegerTextBoxWaterMarkTextChangedCommand | Occurs when the WaterMarkText property is changed. |
SelectionChanged | IntegerTextBoxSelectionChangedCommand | Occurs when the selection is changed. |
List of MaskedTextBox control events table
Control : MaskedTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
MaskChanged | MaskedTextBoxMaskChangedCommand | Occurs when the Mask property is changed. |
ValidationStringChanged | MaskedTextBoxValidationStringChangedCommand | Occurs when the validation string is changed. |
MaskCompletedChanged | MaskedTextBoxMaskCompletedChangedCommand | Occurs when the MaskCompleted property is changed. |
InvalidValueBehaviorChanged | MaskedTextBoxInvalidValueBehaviorChangedCommand | Occurs when the invalid value is entered. |
DateSeparatorChanged | MaskedTextBoxDateSeparatorChangedCommand | Occurs when the DateSeparator property is changed. |
TimeSeparatorChanged | MaskedTextBoxTimeSeparatorChangedCommand | Occurs when the TimeSeparator property is changed. |
DecimalSeparatorChanged | MaskedTextBoxDecimalSeparatorChangedCommand | Occurs when the DecimalSeparator property is changed. |
NumberGroupSeparatorChanged | MaskedTextBoxNumberGroupSeparatorChangedCommand | Occurs when the NumberGroupSeparator property is changed. |
CurrencySymbolChanged | MaskedTextBoxCurrencySymbolChangedCommand | Occurs when the CurrencySymbol property is changed. |
PromptCharChanged | MaskedTextBoxPromptCharChangedCommand | Occurs when the PromptChar property is changed. |
WatermarkTextModeChanged | MaskedTextBoxWatermarkTextModeChangedCommand | Occurs when the WatermarkTextMode property is changed. |
WatermarkTextIsVisibleChanged | MaskedTextBoxWatermarkTextIsVisibleChangedCommand | Occurs when the WatermarkTextIsVisible property is changed. |
Validating | MaskedTextBoxValidatingCommand | Occurs before validating the input. |
Validated | MaskedTextBoxValidatedCommand | Occurs after validating the input. |
StringValidationCompleted | MaskedTextBoxStringValidationCompletedCommand | Occurs when the string validation is completed. |
TextSelectionOnFocusChanged | MaskedTextBoxTextSelectionOnFocusChangedCommand | Occurs when the TextSelectionOnFocus property is changed. |
EnterToMoveNextChanged | MaskedTextBoxEnterToMoveNextChangedCommand | Occurs when the EnterToMoveNext property is changed. |
MinLengthChanged | MaskedTextBoxMinLengthChangedCommand | Occurs when the MinLength property is changed. |
WatermarkTemplateChanged | MaskedTextBoxWatermarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WatermarkTextChanged | MaskedTextBoxWatermarkTextChangedCommand | Occurs when the WatermarkText property is changed. |
ValueChanged | MaskedTextBoxValueChangedCommand | Occurs when the Value property is changed. |
SelectionChanged | MaskedTextBoxSelectionChangedCommand | Occurs when the selection is changed. |
TextChanged | MaskedTextBoxTextChangedCommand | Occurs when the Text property is changed. |
List of PercentTextBox control events table
Control : PercentTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
PercentageSymbolChanged | PercentTextBoxPercentageSymbolChangedCommand | Occurs when the PercentageSymbol property is changed. |
PercentEditModeChanged | PercentTextBoxPercentEditModeChangedCommand | Occurs when the PercentEditMode property is changed. |
PercentValueChanged | PercentTextBoxPercentValueChangedCommand | Occurs when the PercentValue property is changed. |
MinValueChanged | PercentTextBoxMinValueChangedCommand | Occurs when the MinValue property is changed. |
MaxValueChanged | PercentTextBoxMaxValueChangedCommand | Occurs when the MaxValue property is changed. |
PercentDecimalDigitsChanged | PercentTextBoxPercentDecimalDigitsChangedCommand | Occurs when the PercentDecimalDigits property is changed. |
PercentDecimalSeparatorChanged | PercentTextBoxPercentDecimalSeparatorChangedCommand | Occurs when the PercentDecimalSeparator property is changed. |
PercentGroupSeparatorChanged | PercentTextBoxPercentGroupSeparatorChangedCommand | Occurs when the PercentGroupSeparator property is changed. |
PercentGroupSizesChanged | PercentTextBoxPercentGroupSizesChangedCommand | Occurs when the PercentGroupSizes property is changed. |
ValidationOnLostFocusChanged | PercentTextBoxValidationOnLostFocusChangedCommand | Occurs when the ValidationOnLostFocus property is changed. |
CultureChanged | PercentTextBoxCultureChangedCommand | Occurs when the culture is changed. |
TextSelectionOnFocusChanged | PercentTextBoxTextSelectionOnFocusChangedCommand | Occurs when the TextSelectionOnFocus property is changed. |
EnterToMoveNextChanged | PercentTextBoxEnterToMoveNextChangedCommand | Occurs when the EnterToMoveNext property is changed. |
IsUndoEnabledChanged | PercentTextBoxIsUndoEnabledChangedCommand | Occurs when the IsUndoEnabled property is changed. |
IsValueNegativeChanged | PercentTextBoxIsValueNegativeChangedCommand | Occurs when the IsValueNegative property is changed. |
NegativeForegroundChanged | PercentTextBoxNegativeForegroundChangedCommand | Occurs when the NegativeForeground property is changed. |
NumberFormatChanged | PercentTextBoxNumberFormatChangedCommand | Occurs when the NumberFormat property is changed. |
WaterMarkTemplateChanged | PercentTextBoxWaterMarkTemplateChangedCommand | Occurs when the watermark template is changed. |
WaterMarkTextChanged | PercentTextBoxWaterMarkTextChangedCommand | Occurs when the WaterMarkText property is changed. |
SelectionChanged | PercentTextBoxSelectionChangedCommand | Occurs when the selection is changed. |
List of NumericUpDown control events table
Control : NumericUpDown | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ValueChanged | NumericUpDownValueChangedCommand | Occurs after the Value property is changed. |
ValueChanging | NumericUpDownValueChangingCommand | Occurs before the Value property is changed. |
Parsing | NumericUpDownParsingCommand | Occurs when parsing a value. |
ParseError | NumericUpDownParseErrorCommand | Occurs when an error occurs while parsing. |
List of PropertyGrid control events table
Control : PropertyGrid | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectedObjectChanged | PropertyGridSelectedObjectChangedCommand | Occurs when the SelectedObject property is changed. |
SortDirectionChanged | PropertyGridSortDirectionChangedCommand | Occurs when the SortDirection property is changed. |
EnableGroupingChanged | PropertyGridEnableGroupingChangedCommand | Occurs when the EnableGrouping property is changed. |
ValueChanged | PropertyGridValueChangedCommand | Occurs when the Value property is changed. |
BackStageButton control event table
Control : BackStageButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | BackStageButtonClickCommand | Occurs when the BackStage button is clicked. |
BackStage control event table
Control : BackStage | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ButtonClick | BackStageCommandButtonClickCommand | Occurs when the BackStage button is clicked. |
List of RibbonBar control events table
Control : RibbonBar | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
LauncherClick | RibbonBarLauncherClickCommand | Occurs when the launcher is clicked. |
CollapsedChanged | RibbonBarCollapsedChangedCommand | Occurs when the Collapsed property is changed. |
List of RibbonButton control events table
Control : RibbonButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Clicked | RibbonButtonClickedCommand | Occurs when the Ribbon button is clicked. |
Checked | RibbonButtonCheckedCommand | Occurs when the Checked property is changed. |
List of RibbonCheckBox control events table
Control : RibbonCheckBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Checked | RibbonCheckBoxCheckedCommand | Occurs when an item of the RibbonCheckBox control is selected. |
UnChecked | RibbonCheckBoxUnCheckedCommand | Occurs when the item of the RibbonCheckBox control is cleared. |
Indeterminate | RibbonCheckBoxIndeterminateCommand | Occurs when the Indeterminate property is changed. |
List of RibbonComboBox control events table
Control : RibbonComboBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
DropDownOpen | RibbonComboBoxDropDownOpenCommand | Occurs when the drop-down menu is opened. |
DropDownClose | RibbonComboBoxDropDownCloseCommand | Occurs when the drop-down menu is closed. |
List of Ribbon control events table
Control : Ribbon | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
TabPanelItemChanged | RibbonTabPanelItemChangedCommand | Occurs when the TabPanelItem property is changed. |
IsQATBelowChanged | RibbonIsQATBelowChangedCommand | Occurs when the IsQATBelow property is changed. |
OnRibbonContextMenuOpened | RibbonOnRibbonContextMenuOpenedCommand | Occurs when the Ribbon context menu is opened. |
SelectedTabChanged | RibbonSelectedTabChangedCommand | Occurs when the selected tab is changed. |
List of RibbonDropDownButton control events table
Control : RibbonDropDownButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
DropDownOpening | RibbonDropDownButtonDropDownOpeningCommand | Occurs before the drop-down menu opens. |
DropDownOpened | RibbonDropDownButtonDropDownOpenedCommand | Occurs after the drop-down menu is opened. |
DropDownClosing | RibbonDropDownButtonDropDownClosingCommand | Occurs before the drop-down menu closes. |
DropDownClosed | RibbonDropDownButtonDropDownClosedCommand | Occurs after the drop-down menu is closed. |
RibbonDropButton control event table
Control : RibbonDropDown | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
OpenChanged | RibbonDropDownOpenChangedCommand | Occurs when the Open property is changed. |
RibbonDropDownItem control event table
Control : RibbonDropDownItem | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ItemClick | RibbonDropDownItemClickCommand | Occurs when an item of the RibbonDropDownItem control is clicked. |
RibbonGallery control event table
Control : RibbonGallery | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectedItemChanged | RibbonGallerySelectedItemChangedCommand | Occurs when the SelectedItem property is changed. |
RibbonGalleryItem control event table
Control : RibbonGalleryItem | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | RibbonGalleryItemClickCommand | Occurs when RibbonGalleryItem is clicked. |
RibbonItemBase control event table
Control : RibbonItemBase | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | RibbonItemBaseClickCommand | Occurs when RibbonItemBase is clicked. |
RibbonListBox control event table
Control : RibbonListBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
SelectionChanged | RibbonListBoxSelectionChangedCommand | Occurs when the SelectedItem property is changed. |
RibbonMenuItem control event table
Control : RibbonMenuItem | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | RibbonMenuItemClickCommand | Occurs when RibbonMenuItem is clicked. |
List of RibbonRadioButton control events table
Control : RibbonRadioButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Checked | RibbonRadioButtonCheckedCommand | Occurs when the Ribbon radio button is selected. |
UnChecked | RibbonRadioButtonUnCheckedCommand | Occurs when the Ribbon radio button is cleared. |
Indeterminate | RibbonRadioButtonIndeterminateCommand | Occurs when the Indeterminate property is changed. |
RibbonSplitButton control event table
Control : RibbonSplitButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | RibbonSplitButtonClickCommand | Occurs when RibbonSplitButton is clicked. |
RibbonTab control event table
Control : RibbonTab | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
OnRibbonTabClick | RibbonTabOnRibbonTabClickCommand | Occurs when the Ribbon tab is clicked. |
RibbonTabItem control event table
Control : RibbonTabItem | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
CaptionChanged | TabButtonCaptionChangedCommand | Occurs when the Caption property is changed. |
SeparatorOpacityChanged | TabButtonSeparatorOpacityChangedCommand | Occurs when the SeparatorOpacity property is changed. |
RibbonTabStrip control event table
Control : RibbonTabStrip | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Arranged | RibbonTabStripArrangedCommand | Occurs when RibbonTabStrip is arranged. |
RibbonTextBox control event table
Control : RibbonTextBox | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
TextChanged | RibbonTextBoxTextChangedCommand | Occurs when the Text property is changed. |
List of SimpleMenuButton control events table
Control : SimpleMenuButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
DescriptionChanged | SimpleMenuButtonDescriptionChangedCommand | Occurs when the Description property is changed. |
IconChanged | SimpleMenuButtonIconChangedCommand | Occurs when the Icon property is changed. |
IconSizeChanged | SimpleMenuButtonIconSizeChangedCommand | Occurs when the IconSize property is changed. |
LabelChanged | SimpleMenuButtonLabelChangedCommand | Occurs when the Label property is changed. |
SplitMenuButton control event table
Control : SplitMenuButton | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Click | SplitMenuButtonClickCommand | Occurs when SplitMenuButton is clicked. |
Spinner control event table
Control : Spinner | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Spin | SpinnerSpinCommand | Occurs when the Spin property is changed. |
List of TileView control events table
Control : TileView Control | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
IsClickHeaderToMaximizePropertyChanged | TileViewControlIsClickHeaderToMaximizePropertyChangedCommand | Occurs when the IsClickHeaderToMaximize property is changed. |
IsMinMaxButtonOnMouseOverOnlyChanged | TileViewControlIsMinMaxButtonOnMouseOverOnlyChangedCommand | Occurs when the IsMinMaxButtonOnMouseOverOnly property is changed. |
IsSplitterVisibilityChanged | TileViewControlIsSplitterVisibilityChangedCommand | Occurs when the IsSplitterVisibility property is changed. |
RowCountChanged | TileViewControlRowCountChangedCommand | Occurs when the RowCount property is changed. |
ColumnCountChanged | TileViewControlColumnCountChangedCommand | Occurs when the ColumnCount property is changed. |
AllowItemRepositioningChanged | TileViewControlAllowItemRepositioningChangedCommand | Occurs when the AllowItemRepositioning property is changed. |
MinimizedItemsOrientationChanged | TileViewControlMinimizedItemsOrientationChangedCommand | Occurs when the MinimizedItemsOrientation property is changed. |
MinimizedItemsPercentageChanged | TileViewControlMinimizedItemsPercentageChangedCommand | Occurs when the MinimizedItemsPercentage property is changed. |
SplitterThicknessChanged | TileViewControlSplitterThicknessChangedCommand | Occurs when the SplitterThickness property is changed. |
SelectedItemChanged | TileViewControlSelectedItemChangedCommand | Occurs when the SelectedItem property is changed |
Minimized | TileViewControlMinimizedCommand | Occurs before an item of the TileView control is minimized. |
Minimizing | TileViewControlMinimizingCommand | Occurs after an item of the TileView control is minimized. |
Maximizing | TileViewControlMaximizingCommand | Occurs before an item of the TileView control is maximized. |
Maximized | TileViewControlMaximizedCommand | Occurs after an item of the TileView control is maximized. |
Restoring | TileViewControlRestoringCommand | Occurs before the item of the TileView control is restored. |
Restored | TileViewControlRestoredCommand | Occurs after the item of the TileView control is restored. |
MaximizedItemChanged | TileViewControlMaximizedItemChangedCommand | Occurs when the maximized item is changed. |
List of TileViewItem control events table
Control : TileViewItem | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
StateChanged | TileViewItemStateChangedCommand | Occurs after the State property is changed. |
StateChanging | TileViewItemStateChangingCommand | Occurs before the State property is changed. |
Selected | TileViewItemSelectedCommand | Occurs when the SelectedItem property is changed. |
List of TimeSpan control events table
Control : TimeSpan | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
ValueChanged | TimeSpanEditValueChangedCommand | Occurs when the Value property is changed. |
SelectionChanged | TimeSpanEditSelectionChangedCommand | Occurs when the selection is changed. |
List of Window control events table
Control : Window | ||
Namespace : Syncfusion.Windows.Tools.MVVM | ||
Assembly : Syncfusion.Shared.MVVM.Silverlight | ||
Event | Equivalent Commands | Description |
---|---|---|
Activated | WindowControlActivatedCommand | Occurs when the window is activated. |
Deactivated | WindowControlDeactivatedCommand | Occurs when the window is deactivated. |
Closed | WindowControlClosedCommand | Occurs after the window is closed. |
Closing | WindowControlClosingCommand | Occurs before the window is closed. |
Opened | WindowControlOpenedCommand | Occurs after the window is opened. |
Opening | WindowControlOpeningCommand | Occurs before the window is opened. |
SystemMenuOpened | WindowControlSystemMenuOpenedCommand | Occurs after the System menu is opened. |
SystemMenuOpening | WindowControlSystemMenuOpeningCommand | Occurs before the System menu is opened. |
OnWindowStateChanging | WindowControlOnWindowStateChangingCommand | Occurs before the WindowState property is changed. |
OnWindowStateChanged | WindowControlOnWindowStateChangedCommand | Occurs after the WindowState property is changed. |
ContextMenuOpened | WindowControlContextMenuOpenedCommand | Occurs when the context menu is opened. |
ContextMenuClosed | WindowControlContextMenuClosedCommand | Occurs when the context menu is closed. |
MouseDoubleClick | WindowControlMouseDoubleClickCommand | Occurs when the window is double-clicked. |