using System; using Dragablz; namespace DragablzDemo { public static class BoundExampleNewItem { public static Func Factory { get { return () => { var dateTime = DateTime.Now; return new HeaderedItemViewModel() { Header = dateTime.ToLongTimeString(), Content = dateTime.ToString("R") }; }; } } } }