16 lines
301 B
C#
16 lines
301 B
C#
|
|
using System.Windows.Controls;
|
|||
|
|
|
|||
|
|
namespace ExcelHelper.Views.Pages
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// DataListPage.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class DataListPage : Page, IView
|
|||
|
|
{
|
|||
|
|
public DataListPage()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|