Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Disabling viewstate on a form
Message
 
 
To
11/06/2010 03:42:58
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 9.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01468039
Message ID:
01468487
Views:
54
>>>>Thanks. Since I am mostly working (a little) in WinForms and plan for WPF, this will be one more technology I won't be learning <g>.
>>>
>>>If you're planning for WPF then look at the MVVM pattern - sort of a variation of MVC but better suited to WPF.....
>>
>>Thank you, Viv. First I need to learn how to create Hello World in WPF <g>.
>
>
>( got this from a book - it's not the way you would do it )
>
>If you have a console application, add 3 references
>- PresentationCore
>- PresentationFramework
>- WindowsBase
>
>
>
>using System;
>using System.Windows;
>using System.Data;
>
>
>namespace BaseTest
>{
>	class Program
>	{
>		[STAThread]
>		static void Main()
>		{
>			Window win = new Window();
>			win.Title = "The Title";
>			win.Content = "Hello World";
>			Application app = new Application();
>			app.Run(win);
>		}
>	}
>
>
>}
>
Thank you, Gregory. I will try this complicated application over the weekend. BTW, which book (if you have a name) did/do you use for learning WPF?
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform