using Aucma.Core.Palletiz.Views; using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aucma.Core.Palletiz.ViewModels { public partial class PalletizPageViewModel : ObservableObject { public PalletizPageViewModel() { } [RelayCommand] public void AddPlan(string objId) { SplitPlanView plan = new SplitPlanView(objId); plan.Show(); } } }