private void startRowPick_click(object sender, RoutedEventArgs e)
 {
     startRowvar = VariableStorage.Pick();
     if (startRowvar != null)
     {
         RangeStartatRow_text.Text = startRowvar.VariableName;
     }
 }
 private void second_operand_click(object sender, RoutedEventArgs e)
 {
     secondOperand = VariableStorage.Pick();
     if (secondOperand != null)
     {
         second_operand.Text = secondOperand.VariableName;
     }
 }
 private void first_operand_click(object sender, RoutedEventArgs e)
 {
     firstOperand = VariableStorage.Pick();
     if (firstOperand != null)
     {
         first_operand.Text = firstOperand.VariableName;
     }
 }
Example #4
0
 private void remove_index_click(object sender, RoutedEventArgs e)
 {
     index_variable = VariableStorage.Pick();
     if (index_variable != null)
     {
         removeIndex_text.Text = index_variable.VariableName;
     }
 }
Example #5
0
 private void list_from_click(object sender, RoutedEventArgs e)
 {
     working_variable = VariableStorage.Pick();
     if (working_variable != null)
     {
         listFrom_text.Text = working_variable.VariableName;
     }
 }
Example #6
0
 private void intoList_click(object sender, RoutedEventArgs e)
 {
     working_list = VariableStorage.Pick();
     if (working_list != null)
     {
         intoList_text.Text = working_list.VariableName;
     }
 }
Example #7
0
 private void addItem_click(object sender, RoutedEventArgs e)
 {
     itemToAdd = VariableStorage.Pick();
     if (itemToAdd != null)
     {
         addItem_text.Text = itemToAdd.VariableName;
     }
 }
Example #8
0
 private void secondList_click(object sender, RoutedEventArgs e)
 {
     SecondList = VariableStorage.Pick();
     if (SecondList != null)
     {
         secondList.Text = SecondList.VariableName;
     }
 }
Example #9
0
 private void firstList_click(object sender, RoutedEventArgs e)
 {
     FirstList = VariableStorage.Pick();
     if (FirstList != null)
     {
         firstList.Text = FirstList.VariableName;
     }
 }
        private void pickVar_click(object sender, RoutedEventArgs e)
        {
            working_variable = VariableStorage.Pick();

            if (working_variable != null)
            {
                msg_rtb.Document.Blocks.Clear();
                msg_rtb.Document.Blocks.Add(new Paragraph(new Run(working_variable.VariableName)));
            }
        }
Example #11
0
 private void textToReverse_click(object sender, RoutedEventArgs e)
 {
     textToReverse_text.Text = VariableStorage.Pick().VariableName;
 }
Example #12
0
 private void truncate_number_click(object sender, RoutedEventArgs e)
 {
     working_variable = VariableStorage.Pick();
     if (working_variable != null)
         numberToTruncate_text.Text = working_variable.VariableName;
 }
Example #13
0
 private void text_to_convert_pick(object sender, RoutedEventArgs e)
 {
     textToConvert_text.Text = VariableStorage.Pick().VariableName;
 }
Example #14
0
 private void text_to_find_click(object sender, RoutedEventArgs e)
 {
     textToFind_text.Text = VariableStorage.Pick().VariableName;
 }
Example #15
0
 private void variable_picker_Click(object sender, RoutedEventArgs e)
 {
     textToParse_text.Text = VariableStorage.Pick().VariableName;
 }
Example #16
0
 private void textToTrim_click(object sender, RoutedEventArgs e)
 {
     working_variable     = VariableStorage.Pick();
     textToTrim_text.Text = working_variable.VariableName;
 }