You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
561 B
C#
25 lines
561 B
C#
using Aucma.Core.PrintTo.ViewModels;
|
|
using System.Windows;
|
|
|
|
namespace Aucma.Core.PrintTo.Views
|
|
{
|
|
/// <summary>
|
|
/// SupplementView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class SupplementView : Window
|
|
{
|
|
#region 构造函数
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="Id">主键</param>
|
|
public SupplementView(int Id)
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new SupplementViewModel(Id);
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|