22 lines
480 B
C#
22 lines
480 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Seyounth.Hyosung.Views.Controls;
|
|
|
|
public partial class AddVarietyControl : UserControl
|
|
{
|
|
public AddVarietyControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CancelButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private void OkButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |