x4Trace Documentation v1.0
|
Classes | |
class | GraphicsController |
Represents the graphics controller. Handles the GUI elements. Button click, selection change, etc. Calls methods of grids. AddControls method initializes the GUI elements of GraphicsController. More... | |
class | RecordIsLockedException |
Exception: Record is locked. More... | |
Functions | |
delegate void | CloseEvent (GraphicsController gc) |
Delegate of close event. | |
delegate void | OpenFileEVT (string extensions, out byte[] content) |
Delegate of open file event. | |
delegate void | ShowProgressBarEVT (out Tools.Threading.IProgressBar progressBar) |
Delegate of show progressbar. | |
delegate void | ShowYesNoDialogEVT (string message, out bool result) |
Delegate of yes/no dialog. | |
delegate void | InvokeMethod (Action action) |
Delegate of invoke. Callc the action by invoke/dispatcher. | |
delegate void Ix4Trace.GraphicsController.Controls.CloseEvent | ( | GraphicsController | gc | ) |
Delegate of close event.
gc | The graphics controller. |
delegate void Ix4Trace.GraphicsController.Controls.InvokeMethod | ( | Action | action | ) |
Delegate of invoke. Callc the action by invoke/dispatcher.
action | Action to invoke. |
delegate void Ix4Trace.GraphicsController.Controls.OpenFileEVT | ( | string | extensions, |
out byte[] | content ) |
Delegate of open file event.
extensions | Extenstions of file. |
content | The byte array of selected file. Null when it is not selected. |
delegate void Ix4Trace.GraphicsController.Controls.ShowProgressBarEVT | ( | out Tools.Threading.IProgressBar | progressBar | ) |
Delegate of show progressbar.
progressBar | The progress bar. |
delegate void Ix4Trace.GraphicsController.Controls.ShowYesNoDialogEVT | ( | string | message, |
out bool | result ) |
Delegate of yes/no dialog.
message | Messahe of dialog. |
result | Result of dialog. |