Mercurial > silverbladetech
view Chronosv2/source/Presentation/Widgets/Calendar/CalendarWidget.cs @ 27:96fdf58e05b4
Server working with sockets and rabbitmq
author | adminsh@apollo |
---|---|
date | Wed, 21 Mar 2012 19:00:59 +0000 |
parents | 443821e55f06 |
children |
line wrap: on
line source
using System; using Chronos.Presentation.Core.Widgets; namespace Chronos.Presentation.Widgets { /// <summary> /// Calendar widget definition /// </summary> public sealed class CalendarWidget : IWidget { #region · Properties · /// <summary> /// Gets the widget title /// </summary> /// <value></value> public string Title { get { return "Calendar"; } } /// <summary> /// Gets the widget description /// </summary> /// <value></value> public string Description { get { return "Calendar"; } } /// <summary> /// Gets the widget group /// </summary> /// <value></value> public string Group { get { return "Tools"; } } /// <summary> /// Gets the widget icon style /// </summary> /// <value></value> public string IconStyle { get { return String.Empty; } } #endregion #region · Methods · /// <summary> /// Creates the widget view /// </summary> /// <returns></returns> public System.Windows.FrameworkElement CreateView() { return new CalendarWidgetView(); } #endregion } }