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
output:
Download Complete Source Code
MainWindow
<Window x:Class="FirstWpf.MainWindow"Just you have to add textblock to see the output of your first wpf application.
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>
output:
Download Complete Source Code
0 comments:
Post a Comment