VS2010 now support multi-monitors!

Posted by SunKwon Kim on 2009/09/01 18:08
Filed under WPF
Tags :
Using Multi-monitors have become one of the basic environments for developing softwares. But, from VS6 to VS2008 there was no development environment to support multi-monitors. Only we can drag a window of VS2008 to expand the width of it across the monitors. Happy news comes to us from Scott Guthrie. Now we can extract windows from the VS2010 and throw...
2009/09/01 18:08 2009/09/01 18:08

How to bind WPF controls to Application settings

Posted by SunKwon Kim on 2009/04/08 23:43
Filed under WPF
Tags : ,
When to bind WPF controls to settings At Sometimes, i want to show program verion in my application. And I wrote it in Application settings ("Settings.Settings"). How could I do that? If we don't know how to bind it, we have to write twice at each time upgrading our programs. Jerome Laban and Michael jp posted how to do that with different approaches. Me...
2009/04/08 23:43 2009/04/08 23:43

How to log using XmlDataProvider in WPF

Posted by SunKwon Kim on 2009/03/09 00:35
Filed under WPF
Tags : ,

Multithread logger in WPF

Tamir Khason posted "Multithread logger in WPF". In that article, we can learn about how to log errors using XmlDataProvider in WPF. It is clear and interest.
He posted his article here (or you can it here.)

2009/03/09 00:35 2009/03/09 00:35

How to use XmlDataProvider from code behind (c# code)

Posted by SunKwon Kim on 2009/03/07 23:19
Filed under WPF
Tags : , ,
In many cases, XML is very useful in programming For example, I have written a program which support many product catalogs. In traditional programming, we had used a database or a customized file which support hierarchy structures. But in recent day, we can easily do that by XML. In WPF, XmlDataProvider was given to us to handle XML data. how to use XML...
2009/03/07 23:19 2009/03/07 23:19

How to set color of a button into default value in WPF

Posted by SunKwon Kim on 2009/02/09 12:51
Filed under WPF

How to set color of a button into default value

If you want set color of a button into default, then just use the following code.

2009/02/09 12:51 2009/02/09 12:51

Window Presentation Foundation (WPF) animated Progressbar with code and xaml

Posted by SunKwon Kim on 2008/10/22 03:28
Filed under WPF

Introduction to WPF Animation Animation is one of the most fascinating features of Window Presentation Foundation (WPF). To support easy usage of animation, Microsoft release Expression Blend, which is software for WPF designer.If you use Expression Blend, you can draw animation in your program very easily. But to optimize the animation and solve the pro...
2008/10/22 03:28 2008/10/22 03:28

How to write data binding between code and xaml in WPF

Posted by SunKwon Kim on 2008/10/20 01:05
Filed under WPF
Tags : ,
The most example of data binding is about binding between WPF controls. For example, it is data binding between value of slider and font size of textbox. But after knowing this, we want to know how to declare data binding between code and xaml.In this article, we will see one of most simple example of data binding between code and xaml. Through this examp...
2008/10/20 01:05 2008/10/20 01:05

How to share resources between WPF projects : Resource dictionary

Posted by SunKwon Kim on 2008/10/14 20:27
Filed under WPF
Tags :
Sharing resources can reduce your work. It is something every software developer wants. In WPF, "Resource dictionary" is cool something like that. In other words, Resource Dictionary is like toolbox in visual studio. After defining Resouce Dictionary once, we can use resouces in the Resource Dictionary whenever we wants. For examples, when developi...
2008/10/14 20:27 2008/10/14 20:27

How to declare an object in XAML : WPF

Posted by SunKwon Kim on 2008/10/12 12:58
Filed under WPF
Tags : , ,
Every object in XAML is declared in the resource In the traditional application, we declare variables, objects, types freely. But when learning WPF, we have a problem where we can declare data. For examples, I want to declare double typed variable for data binding to fontsize of a button. Where we can do it? The answer is in a resource. How to declar...
2008/10/12 12:58 2008/10/12 12:58

Basic of data binding in WPF

Posted by SunKwon Kim on 2008/10/11 21:49
Filed under WPF
Tags : ,
Data binding is a new model for application to interact with data. If data binding is established between the data, and UI, then, when data changes its value, the UI reflect changes automatically.Data binding has several advantages over traditional models.   1. Code for data binding is simple and small.   2. Separation between data and UI is clear. ...
2008/10/11 21:49 2008/10/11 21:49