We are in Codeplex!! :)

In a few days we are going to upload the source code.

Cooperator Framework

Cooperator on Codeplex

Hi, good news from the Cooperator Team.

Now we have a few papers to read about Cooperator.

Introduction

Artefacts

Cooperator Modeler

More about this new release here.

Download here

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

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

XAML.NET

Samples

Windows SDK .NET Framework Samples

Read this post and this for more info. (Post from Gert’s Blog)

And here the links of the blogs. :)

The list of blogs I usually read…(some are missing, because IE7 can’t subscribe to them)
blogs-1.gif
blogs-2.gif
blogs-3.gif
blogs-4.gif

And here the links. :)

Justin Burtch extend the testing attributes of Team System’s unit test framework.

Read the post and download the source here.