Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
For plugins that want to manipulate or run sample lists. More...
Public Member Functions | |
void | DoYourJob () |
Will be triggered when the user clicks on the button. The button will be disabled until you return from here. | |
Properties | |
string | ButtonCaption [get] |
Shown on the sample list page. | |
System.Drawing.Icon | ButtonIcon [get] |
Shown in the button, preferred size 22x22. | |
For plugins that want to manipulate or run sample lists.
Definition at line 12 of file SampleListWorkerInterfaces.cs.
void AxelSemrau.Chronos.Plugin.IWorkWithSampleLists.DoYourJob | ( | ) |
Will be triggered when the user clicks on the button. The button will be disabled until you return from here.
Please note that this will not be run from the main GUI thread. If you have to do something on the GUI thread, use the Helpers.Gui members.
Implemented in MockPlugin.Device.DeviceSurveillance, and MockPlugin.SampleList.MockSampleListWorker.
|
get |
Shown on the sample list page.
You can update this using INotifyPropertyChanged.
Implemented in MockPlugin.Device.DeviceSurveillance, and MockPlugin.SampleList.MockSampleListWorker.
Definition at line 20 of file SampleListWorkerInterfaces.cs.
|
get |
Shown in the button, preferred size 22x22.
You can update this using INotifyPropertyChanged.
Implemented in MockPlugin.Device.DeviceSurveillance, and MockPlugin.SampleList.MockSampleListWorker.
Definition at line 31 of file SampleListWorkerInterfaces.cs.