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