ExcelHelper/Views/Pages/DataListPage.xaml.cs

15 lines
259 B
C#
Raw Normal View History

2024-10-14 08:41:15 +08:00
using System.Windows.Controls;
2024-10-29 16:57:50 +08:00
namespace ExcelHelper.Views.Pages;
/// <summary>
/// DataListPage.xaml 的交互逻辑
/// </summary>
public partial class DataListPage : Page, IView
2024-10-14 08:41:15 +08:00
{
2024-10-29 16:57:50 +08:00
public DataListPage()
2024-10-14 08:41:15 +08:00
{
2024-10-29 16:57:50 +08:00
InitializeComponent();
2024-10-14 08:41:15 +08:00
}
}