Cooperator Framework on Codeplex
December 20, 2006
We are in Codeplex!!
In a few days we are going to upload the source code.
Cooperator Framework: Documentation :)
December 16, 2006
Hi, good news from the Cooperator Team.
Now we have a few papers to read about Cooperator.
Cooperator Framework Preview 7 is out
December 16, 2006
NHibernate and Domain Driven Design Update
December 16, 2006
A month ago, I posted about a series of articles written By Ben Scheirman. (You can read it here)
Well, now, Ben wrote a comment in that post and say me that he has already written the part 8.
A Journey with Domain Driven Design (and NHibernate) – Part 8
Windows Presentation Foundation (WPF) – Hello World :)
December 14, 2006
Hello, I’m going to write a series of articles about WPF.
This only pretend to be an introduction. I’m learning WPF as you, so feedback is welcome.
First of all, if you want to start with WPF, you must install .NET Framework 3.0 RTM and the WCF & WPF Extensions for .NET Framework 3.0 (At this moment, the last release is November 2006 CTP).
Then, you have to create a new Windows Application (WPF)
Now we have a file Window1.xaml
Replace the code with this:
<Window x:Class=”EjemplosBlog.Window1″
xmlns=”http://schemas.microsoft.com
/winfx/2006/xaml/presentation”
xmlns:x=”http://schemas.microsoft.com
/winfx/2006/xaml”
Title=”BlogSamples”
Height=”300″
Width=”300″>
<Grid>
<Button Name=”btnHelloWorld”
Click=”btnHelloWorld_Click”
Height=”54″
Margin=”5,5,117,0″
VerticalAlignment=”Top”>
Hello World
</Button>
</Grid>
</Window>
A quickly review:
- btnHelloWorld is the Id/Name of the button
- btnHelloWorld_Click is the name event Click
Also, add this code to the code behind (Window1.xaml.cs)
void btnHelloWorld_Click(object sender, RoutedEventArgs e)
{
btnHelloWorld.Content = “From Ezequiel
Jadib Blog”;
}
And we are ready to launch our application
I hope this is useful. Later I will post, about how we can do it the same with Triggers.
Downloads
Microsoft .NET Framework 3.0 RTM
Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF) November 2006 CTP
Resources
Introduction to Windows Presentation Foundation
Samples
When reading (and learning) is the key… Now the Links!!
December 6, 2006
And here the links of the blogs.
When reading (and learning) is the key…
December 6, 2006
The list of blogs I usually read…(some are missing, because IE7 can’t subscribe to them)




And here the links.
Extending Unit Testing in Visual Studio Team System
December 5, 2006
Justin Burtch extend the testing attributes of Team System’s unit test framework.
Read the post and download the source here.

