CreateChildWindow(object viewModel) | GenericDialogViewModel | false | Shows the viewModel with a generated view with the onError method already wired up. |
Execute() | void | false | Called when the component is clicked in the toolbar. The logic for what should kick off when the component is executed should be placed in this method. |
GetImageFromResource(string uriString) | BitmapImage | false | This is a helper method to get a bitmapImager from a uri. |
Initialize(IDictionary customSettings) | void | false | Initialize is called when the component is loaded in the application. This will only occur once. |
OnError(ErrorEventArgs errorEventArgs) | void | true | If an exception occurs on Execute for the component this method gives the component a chance to handle the exception. If the exception is not handled then the exception will bubble up to the user. |
OnInitialize(IDictionary customSettings) | void | true | This method can be overridding so the component can perform an action at the time of initialization of the component. |