using StructureHelperCommon.Models.Forces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; namespace StructureHelper.Windows.Forces { /// /// Логика взаимодействия для ForceCombinationByFactor.xaml /// public partial class ForceCombinationByFactorView : Window { ForceCombinationByFactorVM viewModel; public ForceCombinationByFactorView(IForceFactoredList forceCombination) { viewModel = new ForceCombinationByFactorVM(forceCombination); DataContext = viewModel; viewModel.ParentWindow = this; InitializeComponent(); FactoredCombination.CombinationProperty = viewModel.CombinationProperty; } } }