Unknown Recipes
Sign in
|
Join
Home
Contact
RSS
Atom
Search
Tags
Active Directory
ADO.NET
ASP.NET
General
Linq
MSBuild
SQL Server
WCF
WPF
Sponsors
advertise here
News
Navigation
Home
Blogs
Archives
March 2011 (1)
February 2011 (1)
October 2010 (1)
September 2010 (1)
July 2010 (1)
May 2010 (3)
March 2010 (1)
August 2009 (1)
July 2009 (2)
June 2009 (1)
May 2009 (1)
April 2009 (4)
March 2009 (1)
January 2009 (2)
August 2008 (1)
March 2008 (1)
February 2008 (1)
January 2008 (1)
December 2007 (1)
November 2007 (1)
October 2007 (6)
September 2007 (3)
Recent Posts
1
Comments
Recursively Traversing IEnumerable<T>
by
marianor
Most of the samples I saw about traversing an IEnumerable<T> use recursion, this can cause some overload in the stack depending on the hierarchy depth. The version I propose use a Queue<T> to achieve the same; note that this is I a common...
Filed under:
General
Comments
Getting the default value for a Type
by
marianor
Sometimes we need to get a default value for an specific type but we only know the type in runtime, then we can not use default(T). One way to do this is to use a simple extension method: public static object DefaultValue( this Type...
Filed under:
General
,
Linq
3
Comments
How to implement Property Changed notification in WPF with a base ViewModel
by
marianor
Implement property changed notifications is tedious, there are some posts about how to implement it in a strongly-typed way. I decided combine that technique with a way to simplify the implementation of the setter. The first what you need is a base class...
Filed under:
General
,
WPF
Comments
Add Service Reference from SO-Aware
by
marianor
We have recently included a very cool feature to automatically create WCF service references (or service proxies) within Visual Studio 2010 from the SO-Aware repository. After running the installer, you will be able to find a "TellagoStudios.VisualStudio...
Filed under:
General
,
WCF
Comments
SO-Aware released – WCF Repository
by
marianor
Tellago Studios , the company where I am working on, released a great new product called SO-Aware . This is basically a WCF Service Repository that keeps all the configuration centralized. The repository can be accessed through OData feeds, which makes...
Filed under:
General
,
WCF
Comments
MOQ 4.0 Beta 3 Released
by
marianor
We released MOQ 4.0 Beta 3. It was compiled for .NET Framework 3.5 & 4.0 and Silverlight 3 & 4. You can get the binaries here .
Filed under:
General
3
Comments
Sorting a ListView in WPF – Part II
by
marianor
Some time ago I wrote a post about how to sort a ListView by clicking on the header of the column. The problem with that solution was that you needed to implement it each time and you have to define an explicit header for each column. As a more general...
Filed under:
WPF
Comments
MOQ 4.0 Beta 2 released
by
marianor
We released MOQ 4.0 Beta 2, it includes some fixes over the previous version and the update to DynamicProxy 2.2. It was compiled for .NET Framework 3.5 & 4.0 and Silverlight 3 & 4. You can get the binaries here .
Filed under:
General
3
Comments
Disabling Minimize and Maximize buttons in a WPF Window
by
marianor
In WPF there is no possibility to control when the Minimize and Maximize buttons are disabled when the WindowStyle is SingleBorderWindow or ThreeDBorderWindow . In Windows Forms there are some properties like ControlBox , MinimizeBox and MaximizeBox that...
Filed under:
WPF
3
Comments
C# Code Snippets for properties raising PropertyChanged event
by
marianor
I decided to publish the snippets I use to implement properties that raise the PropertyChanged event. There are two code snippets, one generates a property raising the event, it is called by typing propnpc in the code editor, and generates the following...
Filed under:
General
More Posts
Next page »