mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-16 06:05:52 -06:00
19 lines
532 B
C#
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);
|
|
}
|
|
}
|
|
}
|