Files
BrightSharp.Toolkit/JetFrames.AppleJobs.Editor/Views/ModelJobs.xaml.cs

30 lines
700 B
C#
Raw Normal View History

2017-01-09 13:25:52 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace JetFrames.AppleJobs.Editor.Views
{
/// <summary>
/// Interaction logic for ModelJobs.xaml
/// </summary>
public partial class ModelJobs : UserControl
{
public ModelJobs()
{
InitializeComponent();
2017-01-10 21:06:47 +03:00
EditorViewModel.InitGrid(dg);
2017-01-09 13:25:52 +03:00
}
}
}