How to give style to wpf controls

2 comments
Here you can see we are giving style to wpf controls in design page only . You will get complete idea about static style in wpf applications. Let's see, Main window <Window x:Class="StyleDemo.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         Title="MainWindow" Height="350"...
Read More...

Implement key frames in wpf appication

Leave a Comment
create simple key frames animation in wpf application. I will give you demo with code also here so you can learn easily from here. Main Window. <Window x:Class="DesignSideAnnimation.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"> ...
Read More...

Simple design side animation example in wpf application

Leave a Comment
Simple design side animation example in wpf application is here. We don't need to explain it but you need to put this code snippets in design page only. Mainwindow <Window x:Class="DesignSideAnnimation.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         Title="MainWindow"...
Read More...

implement brush demo in wpf application

Leave a Comment
implement brush demo in wpf application with complete source code with example. Here we will see very small example with code in wpf application. Main window <Window x:Class="Brushdemo.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         Title="MainWindow" Height="350"...
Read More...

Simple Ball moving animation in wpf

Leave a Comment
Here we will show you create complete animation idea in wpf application. Here you can see that we provide you code snippets for it. MainWindow <Window x:Class="Animation.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"> ...
Read More...

Create Shap Animations in wpf application

Leave a Comment
Create Different types of shapes with animations in wpf application. Here i will give you complete source code with demo. Let's start to see the code, Main window <Window x:Class="ShapeAnimation.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        Title="MainWindow" Height="350"...
Read More...

how to show word document in viewer using wpf application?

Leave a Comment
Hi friends here i will show you complete code with example to show you word document in viewer in wpf application. Let's start to learn document viewer, Main window <Window x:Class="DocumentShow.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         Title="MainWindow" Height="350"...
Read More...

How to run gif image in wpf application?

Leave a Comment
Hi friend this is the very new example of gif image which will be run in wpf application. I will show you complete example source code for running gif image in this demo. Main window. <Window x:Class="gifImagedemo.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         xmlns:gif="http://wpfanimatedgif.codeplex.com" ...
Read More...

How to create Menu bar in wpf application?

Leave a Comment
Create Menu Bar in wpf with this simple demo example of menu bar with us. I am keeping source code and code snippets for menu bar also. Let's see what's it will give us as output, Mainwindow <Window x:Class="MenuBar.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        ...
Read More...