| 1234567891011121314151617 |
- using Muchinfo.MTPClient.Account.ViewModels;
- using System.Windows.Controls;
- namespace Muchinfo.MTPClient.Account.Views
- {
- /// <summary>
- ///操作日志
- /// </summary>
- public partial class OperateLogView : UserControl
- {
- public OperateLogView()
- {
- InitializeComponent();
- this.DataContext = new OperateLogViewModel();
- }
- }
- }
|