Esempio n. 1
0
 private VocabularyBookSettings()
 {
     InitializeComponent();
     specialCharDialog = new SpecialCharKeyboard();
     specialCharDialog.Initialize(this, BtnSpecialChar);
     specialCharDialog.RegisterTextBox(TbMotherTongue);
 }
Esempio n. 2
0
        public MergeFiles()
        {
            InitializeComponent();
            Icon = Icon.FromHandle(Icons.MergeFiles.GetHicon());
            specialCharDialog = new SpecialCharKeyboard();
            specialCharDialog.Initialize(this, BtnSpecialChar);
            specialCharDialog.RegisterTextBox(TbMotherTongue);

            books = new List <VocabularyBook>();
        }
Esempio n. 3
0
 //Sonderzeichen
 private void TextBox_Enter(object sender, EventArgs e)
 {
     specialCharDialog.RegisterTextBox((TextBox)sender);
 }