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

20 lines
533 B
C#

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