24 lines
560 B
C#
24 lines
560 B
C#
![]() |
using Avalonia;
|
||
|
using Avalonia.Controls;
|
||
|
using Avalonia.Markup.Xaml;
|
||
|
using Seyounth.Hyosung.Ava.ViewModels;
|
||
|
using SukiUI.Controls;
|
||
|
|
||
|
namespace Seyounth.Hyosung.Ava.Views;
|
||
|
|
||
|
public partial class PalletManagerPage :UserControl
|
||
|
{
|
||
|
public PalletManagerViewModel ViewModel { get; }
|
||
|
|
||
|
public PalletManagerPage(PalletManagerViewModel viewModel)
|
||
|
{
|
||
|
ViewModel = viewModel;
|
||
|
DataContext = ViewModel;
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void ComboBox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|