Stories recently tagged with 'WPF'

INotifyPropertyChanged with Compile Time Checking(www.codecapers.com)

submitted by threenine39threenine39(329) 6 days, 3 hours ago

neat little tips for wpf read more...

add a comment |category: |Views: 150

tags: another

Thoughts and Technology: Custom Resizable Windows in WPF and Winforms(itaibh.blogspot.com)

submitted by itaibhitaibh(60) 7 days, 11 hours ago

The following post is relevant for both WPF and Winforms projects, wishing to create custom looking windows that can be dragged and resized from all directions (or specific ones). read more...

add a comment |category: |Views: 4

tags: another

WPF Architecture(explicitcoder.in)

submitted by divyang4481divyang4481(4) 12 days, 23 hours ago

gives overview of WPF architecutre read more...

add a comment |category: |Views: 16

tags: another

Indecent things with Mono.Cecil - An alternative to ILMerge for WPF(sblakemore.com)

submitted by onesteronester(90) 1 month, 23 days ago

ILMerge doesn't work on WPF assemblies, there are alternatives but they issues. Here is another take using a little known CLR feature not usable from C# and black magic IL kung-fu using Mono.Cecil read more...

add a comment |category: |Views: 10

tags: another

A Nice Addition to the Empty WPF F# Template(bloggemdano.blogspot.com)

submitted by dmohldmohl(123) 2 months, 2 days ago

This post announces the awesome new features provided by the XAML type provider from FSharpx that are now available in the F# Empty WPF project template. read more...

add a comment |category: |Views: 3

tags: another

Build a p2p chat application with WPF and ASP.NET Web API(www.strathweb.com)

submitted by fdubfdub(291) 2 months, 3 days ago

Learn how to build a fully functional WPF p2p (peer-to-peer) chat application with ASP.NET Web API and .NET 4.5 read more...

3 comments |category: |Views: 162

tags: another

Auto-Notifying View Models in Silverlight and WPF(www.danielahill.com)

submitted by resabioresabio(95) 2 months, 15 days ago

Quickly create View Models that automatically notify XAML bindings when property values change, without having to manually raise a PropertyChanged Event Code view model properties as: public virtual int MyIntegerProperty { get; set; } read more...

1 comment |category: |Views: 126

tags: another

Fade-Trimming TextBlocks in Silverlight and WPF(blog.hibernatingrhinos.com)

submitted by tom103tom103(161) 2 months, 16 days ago

Samuel Jack describes how to replace ellipsis of long text with a nice fading effect in WPF and Silverlight. read more...

add a comment |category: |Views: 52

tags: another

Microsoft Excel decimal key behavior in WPF(marcelwouters.wordpress.com)

submitted by marcelwoutersmarcelwouters(100) 3 months, 11 days ago

Article which describes how to get the same behavior for the decimal key as in Microsoft Excel for a WPF application. read more...

add a comment |category: |Views: 20

tags: another

Another Way To Kick-start F# WPF Apps(bloggemdano.blogspot.com)

submitted by dmohldmohl(123) 3 months, 22 days ago

This post introduces a new F# WPF Empty project template. read more...

add a comment |category: |Views: 7

tags: another

Another Way To Kick-start F# WPF Apps(bloggemdano.blogspot.com)

submitted by dmohldmohl(123) 3 months, 22 days ago

This post introduces a new F# WPF Empty project template. read more...

add a comment |category: |Views: 7

tags: another

Another Way To Kick-start F# WPF Apps(bloggemdano.blogspot.com)

submitted by dmohldmohl(123) 3 months, 22 days ago

This post introduces a new F# WPF Empty project template. read more...

add a comment |category: |Views: 7

tags: another

Event Handler Memory Leaks, Unwiring Events, and the WeakEventManager(10rem.net)

submitted by dpetersondpeterson(4397) 3 months, 27 days ago

Many developers don't realize that a common source of memory leaks in .NET applications is the event handler. WPF 4.5 includes built-in support for weak events to help us do the right thing and not eat up all the available memory. read more...

add a comment |category: |Views: 139

tags: another

Design time data in WPF and Blend with little effort(www.codewrecks.com)

submitted by alkampferalkampfer(1873) 4 months, 7 days ago

Simple article that shows how easy is to create Design Time Data in WPF for Blend. read more...

add a comment |category: |Views: 7

tags: another

Dynamic Wpf DataGrid Columns using PropertyDescriptors(lucidsnippets.com)

submitted by lucidsnippetslucidsnippets(21) 4 months, 9 days ago

WPF DataGrid control used in combination with custom ObervableCollection<dynamic> implementing ITypedList and providing PropertyDescriptors which enables adding columns dynamically at runtime. Columns definitions are also strongly typed and advanced column data generation can be provided by lambda delegates. read more...

4 comments |category: |Views: 90

tags: another

Coded UI Tests : WPF Utilities(www.jonathanantoine.com)

submitted by jmix90jmix90(570) 4 months, 12 days ago

I played a lot with Coded UI Tests API on WPF applications these last weeks. It turned out that this is a really powerful framework available to use but that we need to write a lot of code ourselves even for simple things. You may already know the coded ui test utilities of Gautam Goenka available on his blog. On this blog post, I want to introduce a set of complementary helper methods that you can use in your project. The links to the binaries/sources are at the end of the post. read more...

1 comment |category: |Views: 82

tags: another