17 lines
356 B
C#
17 lines
356 B
C#
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvFamily
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// RenameFamilyView.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class RenameTypeView
|
|||
|
|
{
|
|||
|
|
public RenameTypeView(RenameTypeViewModel typeViewModel)
|
|||
|
|
{
|
|||
|
|
DataContext = typeViewModel;
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|