コード例 #1
0
ファイル: SettingsForm.cs プロジェクト: pheijmans-zz/GAPP
        public SettingsForm(Framework.Interfaces.ICore core)
            : this()
        {
            _sp          = new SettingsPanel(core);
            _sp.Location = new Point(12, 12);
            this.Controls.Add(_sp);

            this.Text         = Utils.LanguageSupport.Instance.GetTranslation(STR_TITLE);
            this.button1.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_OK);
        }
コード例 #2
0
ファイル: SettingsForm.cs プロジェクト: gahadzikwa/GAPP
        public SettingsForm(Framework.Interfaces.ICore core)
            : this()
        {
            _sp = new SettingsPanel(core);
            _sp.Location = new Point(12, 12);
            this.Controls.Add(_sp);

            this.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_TITLE);
            this.button1.Text = Utils.LanguageSupport.Instance.GetTranslation(STR_OK);
        }