///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
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.Shapes;
using JetBrains.Omea.PresentationEx.Scheduller;
namespace Runner
{
///
/// Interaction logic for Window1.xaml
///
public partial class Window1 : System.Windows.Window
{
public Window1()
{
InitializeComponent();
//Trace.WriteLine(string.Format("Test."));
//Host.Content = new TaskPicker();
Host.Children.Add(new TaskPicker());
}
}
}