.NET news » Examples Examples Rss Feed

EXIF Compare Utility using WPF

The Exif Compare Utility is a WinDiff equivalent for image files that compares the Exif meta-data and displays the differences and similarities. The application is written using WPF and MVVM.
12 Apr 2010, 06:56:00   Source: EXIF Compare Utility using WPF   Tags: Examples WPF

User-driven applications

User-driven applications are the programs in which full control is given to the users. Designers of such programs are responsible only for developing an instrument for solving some task, but they do not enforce users to work with this instrument according with a predefined scenario.
10 Apr 2010, 12:23:00   Source: User-driven applications   Tags: Examples GUI

Breakout in Silverlight

Silverlight technology serves one of the best platform to write web based games. The main advantage is that shapes in Silverlight draw themselves and they support the same events as other elements. So we don’t need to worry about painting process of shapes etc. This game also serves as the basics to develop game in Silverlight.
10 Apr 2010, 10:06:00   Source: Breakout in Silverlight   Tags: Examples Silverlight

Your First Step to the Silverlight Voice/Video Chatting Client/Server

What you should to do to create your own Silverlight Voice/Video chatting system.

An MVVM friendly approach to adding system menu entries in a WPF application

The majority of MFC apps have always had an About... menu entry in the main window's system menu, and this was primarily because the App Wizard generated code for that by default. I wanted to do something similar in a WPF application I've been working on, and I wanted to do it in an MVVM friendly manner. In this article I'll explain a neat way of doing it so that you can easily add menu items and attach command handlers to them while retaining the basic MVVM paradigm.

3 Apr 2010, 14:48:00   Source: An MVVM friendly approach to adding system menu entries...   Tags: WPF Examples

Exploring Secrets of .NET Keystroke Handling

If you've ever been frustrated trying to figure out how to intercept or assign specific keystrokes to specific controls, you'll be glad you found this article.
23 Oct 2008, 21:13:00   Source: Exploring Secrets of .NET Keystroke Handling   Tags: Examples

Network Know-How: Exploring Network Algorithms

Networks can model all sorts of situations including physical networks as well as non-physical situations. Learn how to use network algorithms to test connectivity, build inexpensive connections, assign work, and split networks as inexpensively as possible.
3 Sep 2008, 14:34:53   Source: Network Know-How: Exploring Network Algorithms   Tags: Examples VB.NET

CBR/CBZ Comics in C#

This article will demonstrate simple methods one can use to interact with today's comics applications, and more importantly, to transform your printed comic books into a digital library that can be stored on Compact Discs (CD) or Digital Versatile Discs (DVD) in an orderly manner (in CBZ or CBR formats).
28 Jul 2008, 00:15:00   Source: CBR/CBZ Comics in C#   Tags: Graphics Examples

Global Mouse and Keyboard Library

This article explains how to use the mouse and keyboard library that I have created. This library consists of two things: global mouse and keyboard hooks, and global mouse and keyboard simulators.

The global hooks contain a set of events that follow the .NET event model, so they should be very simple to use if you've done anything with events before.

The simulators will actually simulate mouse movements, clicks, keyboard presses, etc. This can be useful for macro recording (which is one of the sample projects), and of course, messing with your friends.

23 Jul 2008, 19:10:00   Source: Global Mouse and Keyboard Library   Tags: Examples Components

Using converters to aggregate a list in a ListView

Explanation on how to use converters to calculate the sum, largest, average, etc., of the items in a ListView.
23 Jul 2008, 09:48:00   Source: Using converters to aggregate a list in a ListView   Tags: Examples