How To create Simple Wpf Application to start Learning With this first Application

Leave a Comment
Create your first Application with me to develop first WPF application.  Here i will show you how to create wpf application. I am providing sample code with source also.

MainWindow
<Window x:Class="FirstWpf.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBlock Text="Hello Wpf tutorials started!!"/>
    </Grid>
</Window>
 Just you have to add textblock to see the output of your first wpf application.

output:


Download Complete Source Code

0 comments:

Post a Comment