Hi Manh,
- To acquire information about an AlarmWindow, the same method applied to DataGrids can be used:
For column names, number of columns and number of rows:
For the value of a specific cell:
In this case, @Tag.text will get the value of cell(0,20).
Keep in mind that the column index used in “columnSelect”, is according to the AlarmWindow Configuration page.
- The ComboBox object works as a “class” in C#, its events are represented by the lightning symbol:
If you want to handle ComboBox events, you have to associate an event handling method with the event.
In this example below, we are associating the “SelectionChanged” event with its handler:
Then you have to write the code you want to be executed when the event occurs:
Bests,
Tatsoft Team.