Attach() protected static method

protected static Attach ( Control control ) : void
control System.Windows.Forms.Control
return void
Example #1
0
 private void DevicesPanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     RefreshDevicesList();
 }
Example #2
0
 public MainForm()
 {
     InitializeComponent();
     TranslationMgr.Attach(this);
     configurationChecker.ConfigurationWriter = new DefaultConfigurationToFileWriter(ApplicationUtils.APP_CONFIG_PATH);
 }
Example #3
0
 private void HomePanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     UpdatePanel();
 }
Example #4
0
 private void PreferencesPanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     l.Debug("Loading PreferencesPanel");
 }