qmlnet/samples/PhotoFrame/PhotoFrame.Logic/UI/Views/ViewNormal.cs
2018-08-09 16:52:06 -04:00

19 lines
532 B
C#

using PhotoFrame.Logic.BL;
using PhotoFrame.Logic.Config;
using PhotoFrame.Logic.UI.ViewModels;
namespace PhotoFrame.Logic.UI.Views
{
public class ViewNormal : ViewBase
{
public ViewNormal(IAppModel appModel, IFrameController frameController, IFrameConfig config)
: base("ViewNormal.qml", appModel, frameController, config)
{
}
protected override IViewModel CreateViewModel()
{
return new ViewModelNormal(FrameController, FrameConfig);
}
}
}