Skip to main content

What is Windows Presentation Foundation ? - What is WPF ?

WPF stands for Windows Presentation Foundation. It is a best framework for building Windows applications.

WPF Features

WPF supports many great features like :

  • Allows to display more complex graphics and custom themes.
  • Supports multi-touch input.
  • We can define the look of an element directly with a Template.
  • Provides an integrated system for building user interfaces with common media elements like images, audio, and video.
  • Data binding Mechanism to display and interact with data between UI elements and data object.
  • Allows to define a control inside another control as a content.


Comments

Popular posts from this blog

What is C# ?

C# is pronounced as "C-Sharp". It is an object-oriented programming language provided by Microsoft that runs on .Net Framework. We can develop different types of Window and Web applications by the help of C# programming language. C# is designed for CLI (Common Language Infrastructure). CLI is a specification that describes executable code and runtime environment. C# is approved as a standard by ECMA and ISO.

What is SQL?

SQL stands for Structured Query Language. SQL is used to communicate with a database. According to American National Standards Institute (ANSI), it is the standard language for relational database management systems. SQL statements are used to define and manipulate data on a database.  Some common relational database management systems that use SQL are: Oracle, Microsoft SQL Server, Access, etc.

How to add an icon to a WPF application

In this article we discus about how to add an icon for entire WPF application. Create an Icon File (*.ico) Add the icon file to our project. ( How to Add Image in WPF C# Application ) Open Solution Explorer , Select our Project --> Right Click --> Select Properties From Popup Menu Then We can See Project Properties And We Can set the icon in the Application tab. click Start Without Debugging on the DEBUG menu or run it externally the icon will show correctly. When running our application in debug mode from  Visual Studio, the icon will not be shown.