Ejemplo n.º 1
0
 private void AddSingular()
 {
     PortingOptionChosen = EntryImporter.PortingOption.AddSingularAsChild;
     Close();
 }
Ejemplo n.º 2
0
 private void MergeTree()
 {
     PortingOptionChosen = EntryImporter.PortingOption.MergeTreeChildren;
     Close();
 }
Ejemplo n.º 3
0
 private void CloneAllReferences()
 {
     PortingOptionChosen = EntryImporter.PortingOption.CloneAllDependencies;
     Close();
 }
Ejemplo n.º 4
0
 private void CloneTree()
 {
     PortingOptionChosen = EntryImporter.PortingOption.CloneTreeAsChild;
     Close();
 }
Ejemplo n.º 5
0
 private void CancelButton_Click(object sender, RoutedEventArgs e)
 {
     PortingOptionChosen = EntryImporter.PortingOption.Cancel;
     Close();
 }
Ejemplo n.º 6
0
 private void AddSingularButton_Click(object sender, RoutedEventArgs e)
 {
     PortingOptionChosen = EntryImporter.PortingOption.AddSingularAsChild;
     Close();
 }
Ejemplo n.º 7
0
 private void CloneTreeButton_Click(object sender, RoutedEventArgs e)
 {
     PortingOptionChosen = EntryImporter.PortingOption.CloneTreeAsChild;
     Close();
 }
Ejemplo n.º 8
0
 private void MergeButton_Click(object sender, RoutedEventArgs e)
 {
     PortingOptionChosen = EntryImporter.PortingOption.MergeTreeChildren;
     Close();
 }
Ejemplo n.º 9
0
 private void ReplaceData()
 {
     PortingOptionChosen = EntryImporter.PortingOption.ReplaceSingular;
     Close();
 }