示例#1
0
 private void SelfTriggerListAdd_Loaded(object sender, RoutedEventArgs e)
 {
     ControlRows.Add(new Row("999 222,00", GetOutputFromInput));
     ControlRows.Add(new Row("322 444 666,88", GetOutputFromInput));
     ControlRows.Add(new Row("465 444 666,99", GetOutputFromInput));
     ControlRows.Add(new Row("282 222,99", GetOutputFromInput));
     ControlRows.Add(new Row("666 555 888", GetOutputFromInput));
     ControlRows.Add(new Row("322 444 666,88", GetOutputFromInput));
     ControlRows.Add(new Row("222 212,99", GetOutputFromInput));
     ControlRows.Add(new Row("999 555 888", GetOutputFromInput));
     ControlRows.Add(new Row(GetOutputFromInput));
     ControlRows.Add(new Row(GetOutputFromInput));
     ControlRows.Add(new Row());
     ControlRows.Add(new Row());
 }
示例#2
0
 private void ButtonGetOutput_Click(object sender, RoutedEventArgs e)
 {
     ControlRows.Add(new Row(TextboxInput.Text, GetOutputFromInput));
 }