Attach() protected static method

protected static Attach ( Control control ) : void
control System.Windows.Forms.Control
return void
コード例 #1
0
 private void DevicesPanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     RefreshDevicesList();
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: pipipierre/Notpod
 public MainForm()
 {
     InitializeComponent();
     TranslationMgr.Attach(this);
     configurationChecker.ConfigurationWriter = new DefaultConfigurationToFileWriter(ApplicationUtils.APP_CONFIG_PATH);
 }
コード例 #3
0
ファイル: HomePanel.cs プロジェクト: pipipierre/Notpod
 private void HomePanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     UpdatePanel();
 }
コード例 #4
0
ファイル: PreferencesPanel.cs プロジェクト: pipipierre/Notpod
 private void PreferencesPanel_Load(object sender, EventArgs e)
 {
     TranslationMgr.Attach(this);
     l.Debug("Loading PreferencesPanel");
 }