WPF Articles (53) - Page 1

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

53 records found.
 
Chvrsri
How to Import WPF controls into MFC Application 
Last updated on: 20 Jul 2017 09:27:02 AM by Chvrsri | Views: 8167 | Category: WPF |
This article illustrates the importing mechanism of any WPF(C#) controls into the native MFC (C++) application. Many legacy systems will have this requirement to update their old windows 32 controls to Latest WPF controls for enhanced UI design in their legacy systems.
Rajnilari2015
A Simple Calculator With MVVM Light framework 
Last updated on: 27 Oct 2016 07:08:00 AM by Rajnilari2015 | Views: 10732 | Category: WPF |
The MVVM Light framework is a set of components that helps to create WPF applications in Model-View-ViewModel (MVVM) pattern. It was created by Laurent Bugnion as a lightweight MVVM framework. In this article we will get ourself introduce to this framework by building a simple calculator application.
Rajnilari2015
Calculator Application Using IronJS and WPF by invoking an external JavaScript file 
Last updated on: 19 Oct 2015 06:00:29 AM by Rajnilari2015 | Views: 4149 | Category: WPF |
Votes: 1 | Rating: 5 out of 5
In this article, we will build a simple calculator by using WPF and will use IronJS for writing the various calculator operations.We are using an external JavaScript as our dynamic scripting language.This Java Script file will have all the functions that the Calculator will use.
Rajnilari2015
Calculator Application Using IronJS and WPF 
Last updated on: 16 Oct 2015 05:00:39 AM by Rajnilari2015 | Views: 3165 | Category: WPF |
In this article, we will build a simple calculator by using WPF and will use IronJS for writing the various calculator operations.We are using JavaScript as our dynamic scripting language.
Rohit.Agrawal
Implement Generic Max Length validation in WPF Entity Framework 
Last updated on: 08 Apr 2014 04:36:47 AM by Rohit.Agrawal | Views: 9915 | Category: WPF |
Votes: 1 | Rating: 5 out of 5
In Win-form implementing "Maximum Length validation is easy using EDMX file. But in WPF it is bit tricky to achieve the same validation by reading EDMX file. This article would show you how to achieve the same maximum length validation in WPF project using Entity Framework.
Rohit.Agrawal
WPF Zip Compression with Password Encryption 
Last updated on: 28 Mar 2014 07:09:42 AM by Rohit.Agrawal | Views: 44037 | Category: WPF |
Votes: 1 | Rating: 5 out of 5
.net 4.5 library has provided a new feature of compression, we can create our own zip without using third party software like winzip, winrar etc. While exploring about compression methods I found lots of articles available on how to exploit different compression classes to achieve multiple zipping operation, but none of the article available which shows how to enforce password in your zip and make it password protected. This is because Microsoft has not provided password protection feature in 4.5 zip library.
Pardhu2020
Zoom Image on selected area using WPF 
Last updated on: 27 Feb 2014 06:31:37 AM by Pardhu2020 | Views: 17042 | Category: WPF |
Votes: 1 | Rating: 4 out of 5
In this article, we will discuss how to zoom a image using WPF Parameters.
  • Pardhu2020
    Update textbox changes over label using WPF 
    Last updated on: 27 Feb 2014 08:30:02 AM by Pardhu2020 | Views: 7808 | Category: WPF |
    In this article we will discuss how the text box changes will update Label using WPF
    Pardhu2020
    Handle screen changes using WPF 
    Last updated on: 27 Feb 2014 04:57:17 AM by Pardhu2020 | Views: 4453 | Category: WPF |
    In this article, we will discuss how to handle screen changes using WPF
    Pardhu2020
    Create a User LOGIN using WPF 
    Last updated on: 27 Feb 2014 09:17:37 AM by Pardhu2020 | Views: 17860 | Category: WPF |
    Votes: 1 | Rating: 5 out of 5
    In this article, we will discuss how to create a user LOGIN oval shape using WPF
    Pardhu2020
    Create a Begin,Pause,Resume,Stop button using WPF 
    Last updated on: 27 Feb 2014 03:42:35 AM by Pardhu2020 | Views: 11809 | Category: WPF |
    In this article, we will discuss how to create a Begin,Pause,Resume,Stop button using WPF
    Pardhu2020
    Add,Change and Delete a user using WPF 
    Last updated on: 27 Feb 2014 02:44:07 AM by Pardhu2020 | Views: 4314 | Category: WPF |
    Votes: 1 | Rating: 5 out of 5
    Hi friends today we will discuss Add,Change,Delete functionality in WPF.
    Rama Sagar
    Dependency property in WPF 
    Last updated on: 30 Oct 2013 02:51:35 AM by Rama Sagar | Views: 5738 | Category: WPF |
    A property that is backed by the WPF property system is known as a dependency property.
    Rama Sagar
    Usage of Icommand in MVVM WPF 
    Last updated on: 28 Oct 2013 01:41:02 PM by Rama Sagar | Views: 4983 | Category: WPF |
    ICommand Interface in WPF is commonly used for binding. ICommand Interface is implemented in the ViewModel and are exposed to the view controls.
    Rama Sagar
    Using MVVM Pattern in WPF 
    Last updated on: 28 Oct 2013 01:20:34 PM by Rama Sagar | Views: 27575 | Category: WPF |
    MVVM prescribes separating the nonvisual classes that encapsulate interaction logic, business logic and data from the visual classes that actually render things to the screen. This separation makes the code easier to maintain: first, it prevents the UI from becoming a monolithic class with display controls, interaction logic and business logic all stuffed in side by side; and second, it enables you to automate the testing of interaction logic and user interface mappings instead of relying on expensive, unreliable manual testing..