19 lines
485 B
C#
19 lines
485 B
C#
using System.Windows.Controls;
|
|
using Hopetry.Provider;
|
|
|
|
namespace Hopetry.View.Send
|
|
{
|
|
/// <summary>
|
|
/// DownControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class DownControl : UserControl
|
|
{
|
|
public DownControl()
|
|
{
|
|
InitializeComponent();
|
|
Console.WriteLine("初始化DownView");
|
|
/*DataContext = ViewModelLocator.DownViewModel;
|
|
Console.WriteLine("DataContext 赋值后");*/
|
|
}
|
|
}
|
|
} |