Welcome to WindowsClient.net | Sign in | Join

Build a Standard WPF Application

In this video you will learn how to build a standard WPF application using Microsoft Visual Studio.

Author: Todd Miranda

Duration: 8 minutes, 25 seconds

Video Downloads:
WMV | WMV (Zip) | Zune | iPod | PSP | MPEG-4 | 3GP

Audio Downloads:
AAC | WMA | MPEG-4 | MPEG-3 | MPEG-2

Sample Code:
VB | C#

You must Login to comment.Comments: 10

horanzuta: On March 24, 2008 7:50 AM said:

really nice one, thx.

 

jaytayl: On March 27, 2008 3:28 PM said:

You're welcome.

Thanks for watching, horanzuta.

The WindowsClient.net Team.

 

tmiranda: On April 2, 2008 11:31 AM said:

Thanks Horanzuta.

Glad you liked it.  Hopefully it was helpful.

Todd

 

Mickey D: On April 3, 2008 2:41 AM said:

Thank you for this tutorial Todd.

I have a question:

In this tutorial you are updating the title of Window1 from Window2,

is it possible to update the Textbox text  in Window1 (txtName.Text)

from Window2  ?

 

tmiranda: On April 4, 2008 6:25 PM said:

Mickey,

 You sure can. For example you could do something like this in an event fromt the second window:

Window w = this.Owner as Window;

TextBox tb = w.FindName("txtTest") as TextBox;

tb.Text = "Test";

Technically, if you only call Window2 from Window1, you could explicitly refer to Window1 as the owner and then just access the TextBox as a member of Window1:

Window1 w = this.Owner as Window1;

w.txtTest = "Test";

 

Sylph: On September 6, 2008 5:28 AM said:

Thanks a lot, that tutorial should be the first one that any newbies to WPF Forms checks out. :)

It's quick, and very informative. ^^

 

sylviavargas: On October 2, 2008 2:14 PM said:

Great job.

 

alejorom: On May 19, 2009 9:09 AM said:

Hi there! (Ignorance is bliss)....

Is WPF the next level of winforms applications?

Cheers!

 

kay.one: On July 4, 2009 1:04 AM said:

Hi,

I was looking for a source of videos and tutorial to get started with WPF and this site seem to have a lot of great videos, they only issue is I can't make any sense out of the order of the videos,

should i watch the videos in a specific order or they are just adhoc topics? i would really appreciate any guidance,

thanks,

 

hanumanc: On March 30, 2010 6:19 AM said:

good one..  i liked it !!

 



Featured Item