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.

18 lines
387 B
C#

1 year ago
using Aucma.Core.PrintTo.ViewModels;
using System.Windows.Controls;
1 year ago
namespace Aucma.Core.PrintTo.Views
{
/// <summary>
/// IndexPage.xaml 的交互逻辑
/// </summary>
public partial class IndexPage : UserControl
{
public IndexPage()
{
InitializeComponent();
this.DataContext = new IndexPageViewModel();
}
}
}