Welcome to WindowsClient.net | My Blog | Sign in | Join

Windows Client Videos

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

Posted: Jun 23 2007, 01:08 AM by russnem | with 11 comment(s)
Filed under:

Comments

horanzuta said:

really nice one, thx.

# March 24, 2008 7:50 AM

jaytayl said:

You're welcome.

Thanks for watching, horanzuta.

The WindowsClient.net Team.

# March 27, 2008 3:28 PM

tmiranda said:

Thanks Horanzuta.

Glad you liked it.  Hopefully it was helpful.

Todd

# April 2, 2008 11:31 AM

Mickey D 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  ?

# April 3, 2008 2:41 AM

tmiranda 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";

# April 4, 2008 6:25 PM

Sylph 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. ^^

# September 6, 2008 5:28 AM

sylviavargas said:

Great job.

# October 2, 2008 2:14 PM

alejorom said:

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

Is WPF the next level of winforms applications?

Cheers!

# May 19, 2009 9:09 AM

kay.one 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,

# July 4, 2009 1:04 AM

hanumanc said:

good one..  i liked it !!

# March 30, 2010 6:19 AM

atik2010 said:

simply nice.

thanks

# January 23, 2011 7:38 AM