private void LoadTextToTextBoxes()
        {
            TextForBoxes textForBoxes = TextForBoxes.GetTexts(cmbTextes.SelectedValue.ToString());

            text[0] = textForBoxes.Original;
            text[1] = textForBoxes.LiteralTranslate;
            text[2] = textForBoxes.Translate;


            /*text[0] = "The Parties ###|### to this ###|### Treaty ###|### reaffirm ###|### their faith ###|### in the purposes ###|### and principles ###|### " +
             *  "of the Charter ###|### of the United Nations ###|###and their desire ###|###to live in peace###|### with all peoples###|### and all governments.###|###" +
             *  "\nThey are###|### determined to safeguard ###|###the freedom,###|### common heritage ###|###and civilisation of their peoples,###|### founded on" +
             *  " the principles of democracy, individual liberty and the rule of law.";
             *
             * text[1] = "Сторони ###|### цей###|### Договір ###|### знову  підтверджувати ###|### їх віра ###|### в цілі ###|### та принципи###|### Хартія ###|### " +
             *  "Об’єднаний Нації ###|###та їх бажання###|### жити у мир###|### з усі народи###|### та усі уряди.###|###" +
             *  "\nВони є ###|###визначений охороняти ###|###свободу, ###|###спільний спадщина ###|###та цивілізація їх народи,###|###" +
             *  " заснований на принципи демократія, індивідуальний свобода та правило закон.";
             *
             * text[2] = "Сторони цей Договір знову підтверджувати їх віра в цілі та принципи Хартія " +
             *  "Об’єднаний Нації та їх бажання жити у мир з усі народи та усі уряди." +
             *  "\nВони є визначений охороняти свободу, спільний спадщина та цивілізація їх народи," +
             *  " заснований на принципи демократія, індивідуальний свобода та правило закон.";*/

            GetRealTextDivideTextByPhrase();



            richTextBoxTranslate.Text = textForBoxesChanged[2];

            richTextBoxOriginal.Text = textForBoxesChanged[0];

            richTextBoxLiteralTranslate.Text = textForBoxesChanged[1];
        }
Esempio n. 2
0
        private void ChangeText()
        {
            TextForBoxes textForBoxes = TextForBoxes.GetTexts(cmbTextes.SelectedValue.ToString());

            // var TextWithoutDivideSymbols = textForBoxes.GetRealTextDivideTextByPhrase();
            TextBoxes = textForBoxes;
            richTextBoxTranslate.Text = TextBoxes.Translate;

            richTextBoxOriginal.Text = TextBoxes.Original;

            richTextBoxLiteralTranslate.Text = TextBoxes.LiteralTranslate;

            richTextBoxNameText.Text = Form1.allTexts.NameandFile[cmbTextes.SelectedValue.ToString()];

            index = cmbTextes.SelectedIndex;
        }