Esempio n. 1
0
 public IOMapperForm(IOMapper io_map, GrafcetClass g7)
 {
     this.InitializeComponent();
     this.io_mapper  = io_map;
     this.g7_current = g7;
     this.initialize_display_settings();
 }
Esempio n. 2
0
 public void load_IOMapper_settings()
 {
     this.io_mapper = new IOMapper();
     this.Text      = "Mapping of Inputs/Outputs. Board (" +
                      "µC : " + this.io_mapper.get_device() + ",  " +
                      "Family : " + this.io_mapper.get_family() + ",  " +
                      "Processor : " + this.io_mapper.get_processor() + ")";
     this.y_begin_pos = 40;
 }