Click here to Skip to main content
15,886,769 members
Articles / Desktop Programming / WPF

WPF CRUD Generator (Scaffolding)

Rate me:
Please Sign up or sign in to vote.
4.89/5 (11 votes)
4 Jun 2009LGPL35 min read 88.2K   6.3K   61  
Semi-automatic GUI generation from Domain Models.
using System;
using System.Globalization;
using System.Linq;
using System.Windows.Data;

namespace Technewlogic.WpfShell.UI.Converter
{
	[ValueConversion(typeof (DateTime), typeof (string))]
	public class DateTimeStringConverter : IValueConverter
	{
		public DateTimeStringConverter()
		{
			UseThreadCulture = false;
		}

		public bool UseThreadCulture { get; set; }
		public string Format { get; set; }

		#region IValueConverter Members

		public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
		{
			var dtime = (DateTime)value;
			if (!UseThreadCulture)
				return dtime.ToString(Format);
			else
				return dtime.ToString();
		}

		public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
		{
			throw new NotImplementedException();
		}

		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) www.technewlogic.de
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions