Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
cegonsoft india | Graphics design using WPF
#1
Windows Presentation Foundation (WPF) is a next generation graphics platform which is included in the Microsoft .NET Framework 3.0 and 3.5. It allows you to build advanced user interfaces (UI) that incorporate documents, media, 2D and 3D graphics, animations, and web-like characteristics. Built on the .NET framework 3.0 and 3.5, WPF provides a managed environment for developing applications using the Windows operating system. Like other features of the .NET Framework 3.0 and 3.5, WPF is available for Windows Vista, Windows XP, and Windows Server 2003.

WPF introduces a new XML based language, called XAML. XAML allows applications to dynamically parse and manipulate user interface elements at either design-time or runtime. It uses the code-behind model, similar to ASP.NET programming, allowing designers and developers to work in parallel and to seamlessly combine their work to create a compelling user experience. Of course, WPF also provides you the option to not use XAML files when you develop WPF applications, meaning that you can still develop your applications entirely in code such as C#, C++, or Visual Basic.

Let’s look at a simple XAML structure:

<Window x:Class="Chapter01.Window1"
xmlns="http://schemas.microsoft.com/winfx /2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Chapter1" Height="300" Width="300">
<Grid>
<TextBlock>Hello, WPF!</TextBlock>
</Grid>
</Window>

more at Cegonsoft
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  What is the best graphic design software to use in learning graphic design? sponnerjhon 25 5,219 03-09-2013, 01:15 PM
Last Post: Toph
  Web Application Development India jonure 2 722 03-09-2013, 01:14 PM
Last Post: Toph
  cegonsoft india | Graphics design using silverlight MikeHenery9 0 397 09-09-2011, 04:05 AM
Last Post: MikeHenery9

Forum Jump:


Users browsing this thread: 1 Guest(s)