<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Aizikovich Evgeni</title>
	<atom:link href="http://evgenya.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://evgenya.wordpress.com</link>
	<description>Professional .NET Developer (MCP)</description>
	<lastBuildDate>Sun, 18 Dec 2011 13:47:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='evgenya.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Aizikovich Evgeni</title>
		<link>http://evgenya.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://evgenya.wordpress.com/osd.xml" title="Aizikovich Evgeni" />
	<atom:link rel='hub' href='http://evgenya.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Watermark TextBox Behavior (Silverlight 4)</title>
		<link>http://evgenya.wordpress.com/2011/12/13/watermark-textbox-behavior-silverlight-4/</link>
		<comments>http://evgenya.wordpress.com/2011/12/13/watermark-textbox-behavior-silverlight-4/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 14:37:29 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=203</guid>
		<description><![CDATA[Introduction Recently I implemented a behavior, which is adds to any TextBox control an ability of watermark. But before I going to implementation details, let’s explain what the watermark is. The “watermark” on TextBox control is a text, which is displayed inside while the TextBox is empty (sometimes it also has to be not focused). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=203&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/12/13/watermark-textbox-behavior-silverlight-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/12/msdn.png" medium="image">
			<media:title type="html">MSDN</media:title>
		</media:content>
	</item>
		<item>
		<title>WPF 4 vs Silverlight 4</title>
		<link>http://evgenya.wordpress.com/2011/11/30/wpf-vs-silverlight/</link>
		<comments>http://evgenya.wordpress.com/2011/11/30/wpf-vs-silverlight/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 08:22:33 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=183</guid>
		<description><![CDATA[During last four years I was developing a Windows applications using WPF. From time to time, various people were asking me: &#8220;what the difference between a WPF and SL&#8221;? Well, until now I was never using SL (lucky me), but based on what I heard I was answered: &#8220;SL is a subset of WPF&#8221;. Generally [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=183&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/11/30/wpf-vs-silverlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
		<item>
		<title>Overcoming the limitation of having MultiBinding inside another MultiBinding</title>
		<link>http://evgenya.wordpress.com/2011/09/07/overcoming-the-limitation-of-having-multibinding-inside-another-multibinding/</link>
		<comments>http://evgenya.wordpress.com/2011/09/07/overcoming-the-limitation-of-having-multibinding-inside-another-multibinding/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 08:39:49 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[MultiBinding]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=175</guid>
		<description><![CDATA[Right now, WPF 4.0 is not allowing to have one MultiBinding inside another. If you will try to do that, you will get an exception: BindingCollection does not support items of type MultiBinding. Only Binding is allowed. Here the workaround I found (it used from code, but I my case it was exactly what I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=175&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/09/07/overcoming-the-limitation-of-having-multibinding-inside-another-multibinding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with &#8220;resx&#8221; resources</title>
		<link>http://evgenya.wordpress.com/2011/09/04/working-with-resx-resources/</link>
		<comments>http://evgenya.wordpress.com/2011/09/04/working-with-resx-resources/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 07:55:13 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[General C#]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[resx]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=172</guid>
		<description><![CDATA[Hello folks, Recently I had a task to load dynamically resx (the WinForms) resources. The idea was to discover all embedded resources in any of product assemblies. So, I used &#8220;GetManifestResourceNames&#8221; method to get resources names from inspected assembly, and after that created a ResourceManager instance managing these resources: The initialization of ResourceManager passed successfully, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=172&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/09/04/working-with-resx-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
		<item>
		<title>Lecture 3: WPF architecture</title>
		<link>http://evgenya.wordpress.com/2011/08/14/lecture-3-wpf-architecture/</link>
		<comments>http://evgenya.wordpress.com/2011/08/14/lecture-3-wpf-architecture/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 11:06:25 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=153</guid>
		<description><![CDATA[This is a third lecture about WPF. In first one we discussed about the Windows graphical interfaces (namely GDI and DirectX), in the second we talked about different frameworks wrapping these interfaces (MFC, Winforms and WPF). I explained why WPF is so different from any previous technologies. In this lecture we will talk about WPF [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=153&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/08/14/lecture-3-wpf-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/highlevelwpfarchitecture.png" medium="image">
			<media:title type="html">High Level WPF Architecture</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/snapshot1.png" medium="image">
			<media:title type="html">Snapshot 1</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/snapshot2.png" medium="image">
			<media:title type="html">Snapshot 2</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/snapshot3.png" medium="image">
			<media:title type="html">Snapshot3</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/wpf-architecture.png" medium="image">
			<media:title type="html">WPF architecture</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/compositiontree.png" medium="image">
			<media:title type="html">Composition tree</media:title>
		</media:content>
	</item>
		<item>
		<title>Lecture 2- Windows UI Frameworks and introduction to WPF</title>
		<link>http://evgenya.wordpress.com/2011/08/14/lecture-2-windows-ui-frameworks-and-introduction-to-wpf/</link>
		<comments>http://evgenya.wordpress.com/2011/08/14/lecture-2-windows-ui-frameworks-and-introduction-to-wpf/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 10:30:50 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=148</guid>
		<description><![CDATA[This is a second lecture in the WPF series. In the previous one, we discussed about two Windows Graphical interfaces: GDI and DirectX. We compared these two technologies, and showed advantages and disadvantages of each of them. In this lecture, we will talk about Microsoft Graphical Frameworks, under the hood using these interfaces. The first [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=148&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/08/14/lecture-2-windows-ui-frameworks-and-introduction-to-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/glassbutton.png" medium="image">
			<media:title type="html">GlassButton</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/08/wpf_concept.png" medium="image">
			<media:title type="html">WPF Concept</media:title>
		</media:content>
	</item>
		<item>
		<title>Sometimes Dependency Properties piss me off</title>
		<link>http://evgenya.wordpress.com/2011/07/27/sometimes-dependency-properties-piss-me-off/</link>
		<comments>http://evgenya.wordpress.com/2011/07/27/sometimes-dependency-properties-piss-me-off/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 11:31:07 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[DependencyProperty]]></category>
		<category><![CDATA[ItemsControl]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=142</guid>
		<description><![CDATA[Generally speaking, I like the concept of dependency properties &#8211; the ability to attach data to something is very handly. However, I don&#8217;t like how this implemented. Lets put a side their syntax &#8211; even after writing 1000 of them, I can&#8217;t write 1001 time without looking to previous examples. The most worst thing is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=142&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/07/27/sometimes-dependency-properties-piss-me-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
		<item>
		<title>Lecture 1: Windows graphical interfaces</title>
		<link>http://evgenya.wordpress.com/2011/07/14/123/</link>
		<comments>http://evgenya.wordpress.com/2011/07/14/123/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 04:45:47 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[General Programming]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[GDI+; Windows Graphics Interface]]></category>
		<category><![CDATA[GDI; DirectX; WPF]]></category>
		<category><![CDATA[Windows Vista; Windows 7; DWM]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=123</guid>
		<description><![CDATA[Recently I was asked to lecture in my company, Netformx, about WPF. My goal was to make this lecture different from what you usually may see in WPF courses and events – instead of saying good sounding buzzwords and showing nice graphics, I intended to explain about how WPF is different from other available Microsoft [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=123&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/07/14/123/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/graphicsapi1.jpg" medium="image">
			<media:title type="html">GraphicsAPI</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/invalidate1.jpg" medium="image">
			<media:title type="html">Invalidate</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/transparency.jpg" medium="image">
			<media:title type="html">transparency</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/livepreview.jpg" medium="image">
			<media:title type="html">livepreview</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/flip3d.jpg" medium="image">
			<media:title type="html">flip3d</media:title>
		</media:content>

		<media:content url="http://evgenya.files.wordpress.com/2011/07/bottleneck.jpg" medium="image">
			<media:title type="html">bottleneck</media:title>
		</media:content>
	</item>
		<item>
		<title>WPF Thumb control capturing mouse!</title>
		<link>http://evgenya.wordpress.com/2011/06/27/105/</link>
		<comments>http://evgenya.wordpress.com/2011/06/27/105/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 12:33:27 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[General C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[mouse cursor]]></category>
		<category><![CDATA[thumb]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=105</guid>
		<description><![CDATA[In this post I would like to point to some peculiarity of the WPF thumb control, knowing which may save you hours of debugging. I was trying to make a custom control, which template was a thumb primitive. As part of control behavior, I wanted to change mouse cursor when the mouse hovering over the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=105&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/06/27/105/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
		<item>
		<title>Clipboard and OutOfMemoryException</title>
		<link>http://evgenya.wordpress.com/2011/06/27/clipboard-and-outofmemoryexception/</link>
		<comments>http://evgenya.wordpress.com/2011/06/27/clipboard-and-outofmemoryexception/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 12:09:55 +0000</pubDate>
		<dc:creator>Aizikovich Evgeni</dc:creator>
				<category><![CDATA[General C#]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[clipboard]]></category>
		<category><![CDATA[serialization]]></category>

		<guid isPermaLink="false">http://evgenya.wordpress.com/?p=100</guid>
		<description><![CDATA[During my professional career as software developer, I noticed many times that even the most trivial and simple things are able to hide a pitfalls, which will consume unexpected amount of time. I had to admit, .NET compared to C++ provide much less &#8220;surprises&#8221; of this kind, but still there is a plenty (especially in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=evgenya.wordpress.com&amp;blog=2350286&amp;post=100&amp;subd=evgenya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://evgenya.wordpress.com/2011/06/27/clipboard-and-outofmemoryexception/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3015f24185b319ada44a436641d900fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aizikovich Evgeni</media:title>
		</media:content>
	</item>
	</channel>
</rss>
