FieldWorkClient/View/Send/DownControl.xaml.cs

19 lines
485 B
C#
Raw Normal View History

2025-03-17 10:58:59 +08:00
using System.Windows.Controls;
2025-04-08 16:22:25 +08:00
using Hopetry.Provider;
2025-03-17 10:58:59 +08:00
2025-04-08 16:22:25 +08:00
namespace Hopetry.View.Send
2025-03-17 10:58:59 +08:00
{
/// <summary>
/// DownControl.xaml 的交互逻辑
/// </summary>
public partial class DownControl : UserControl
{
public DownControl()
{
InitializeComponent();
2025-04-08 16:22:25 +08:00
Console.WriteLine("初始化DownView");
/*DataContext = ViewModelLocator.DownViewModel;
Console.WriteLine("DataContext 赋值后");*/
2025-03-17 10:58:59 +08:00
}
}
2025-04-08 16:22:25 +08:00
}