Ads 468x60px

Lamees Tec

web design


Flickr

20111026

Create New windows Application


One of the advantage of WPF is rapid development because design layer separation of code layer.
Create New windows Application(basic application) :
1.       File menu choose new and then project to open the New Project dialog box.
2.       In the new project dialog select WPF Application provide a name and click OK
The windows class contains several properties that allow u to influence the general appearance and behavior of the windows .
To create new instance of the  window as showing in following code :
VB:
Dim awindow as new mywindow()
C#
Mywindow awindow=new mywindow();

20111016

WPF


Windows presentation Foundation(WPF)
 is the successor to windows forms for desktop application development.WPF new declarative syntax called Extensible application markup language.
WPF development supports three kinds of application :
Windows application similar windows form application, based on windows class .
Navigation application as website depend on page ,and it runs under full trust , , based on page class
XAML application(XBAP) work in internet explorer ,it needs permissions .also runs under partial  trust, , based on page class

  Which one can I use ?
It depends on user experience and application requirements 

Recent News

ما رايك بالمدونة ؟

Blog Archive

بحث هذه المدونة الإلكترونية

Featured Posts

20111026

Create New windows Application


One of the advantage of WPF is rapid development because design layer separation of code layer.
Create New windows Application(basic application) :
1.       File menu choose new and then project to open the New Project dialog box.
2.       In the new project dialog select WPF Application provide a name and click OK
The windows class contains several properties that allow u to influence the general appearance and behavior of the windows .
To create new instance of the  window as showing in following code :
VB:
Dim awindow as new mywindow()
C#
Mywindow awindow=new mywindow();

20111016

WPF


Windows presentation Foundation(WPF)
 is the successor to windows forms for desktop application development.WPF new declarative syntax called Extensible application markup language.
WPF development supports three kinds of application :
Windows application similar windows form application, based on windows class .
Navigation application as website depend on page ,and it runs under full trust , , based on page class
XAML application(XBAP) work in internet explorer ,it needs permissions .also runs under partial  trust, , based on page class

  Which one can I use ?
It depends on user experience and application requirements