hades32

Stories kicked by hades32

What if Visual Studio had Achievements?(blog.whiletrue.com)

submitted by bh213bh213(255) 1 year, 4 months ago

Maybe in Visual Studio 2012 with XBox Live integration? read more...

5 comments |category: |Views: 694

tags: another

Using DataBinding in a ConverterParameter(rauscheronline.de)

submitted by hades32hades32(10) 3 years, 9 months ago

But this time without reflection! read more...

add a comment |category: |Views: 117

tags: another

Simplified Glass in Windows Vista with WPF(genesisconduit.wordpress.com)

submitted by bhickenbottombhickenbottom(110) 3 years, 9 months ago

On Windows Vista, extending glass into the client area is not difficult but it isn’t as easy as setting a property on your Window. It requires interop calls, a check for the current OS, and a check to see if DWM composition is enabled. I created the Glass class to help simplify it’s usage. This class exposes an attached property of type Thickness... read more...

add a comment |category: |Views: 58

tags: another

The Neglected Panel: UniformGrid(genesisconduit.wordpress.com)

submitted by bhickenbottombhickenbottom(110) 3 years, 9 months ago

In WPF there are Panels that get used often: the Canvas, DockPanel, Grid, StackPanel, and even the WrapPanel. These Panels feel a lot of love. The UniformGrid, not so much. While most Panels are displayed proudly in System.Windows.Controls, the UniformGrid has been pushed into the Primitives namespace along side the TabPanel and the ToolBarPanel, both of which are too specialized to be given any real attention. read more...

add a comment |category: |Views: 26

tags: another

Gradual Text Animation Bug in WPF 3.5 SP1(genesisconduit.wordpress.com)

submitted by bhickenbottombhickenbottom(110) 3 years, 9 months ago

In WPF 3.5 SP1 they’ve apparently decreased the glyph snapping delay. This is resulting in a pronounced “jitter” when animating text over small distances as the text repeatedly jumps between different snap positions. read more...

add a comment |category: |Views: 27

tags: another

The first rule of WPF(wekempf.spaces.live.com)

submitted by wekempfwekempf(20) 3 years, 9 months ago

How to use attached behaviors to avoid inheritance in WPF. read more...

add a comment |category: |Views: 19

tags: another

Lutz Reflector now owned by Red Gate(simple-talk.com)

submitted by JudahGabrielJudahGabriel(814) 3 years, 9 months ago

Lutz Reflector, the free .NET disassembler every developer developer should have, has been purchased by Red Gate software. Red Gate has stated they will continue to provide the tool for free. read more...

4 comments |category: |Views: 451

tags: another

Clone Detective for Visual Studio(codeplex.com)

submitted by ourcurrentfutureourcurrentfuture(1225) 3 years, 9 months ago

Clone Detective is a Visual Studio integration that allows you to analyze C# projects for source code that is duplicated somewhere else. Having duplicates can easily lead to inconsistencies and often is an indicator for poorly factored code. read more...

add a comment |category: |Views: 546

tags: another

Generic Fiddling(atalasoft.com)

submitted by ericdcoolestericdcoolest(1200) 3 years, 9 months ago

I spent an hour yesterday playing with generics to get my chops up a little better. After reading Krzystof Cwalina's post on the layout of the generic collections, I came up with this little gem: read more...

add a comment |category: |Views: 413

tags: another

WPF SplashScreen Template(blogs.msdn.com)

submitted by frank12345frank12345(2809) 3 years, 9 months ago

WPF SplashScreen Template release read more...

add a comment |category: |Views: 243

tags: another

WPF Datagrid (part3): styling.(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

In this third and final part of the datagrid series ( part1, part 2) we get into styling the datagrid a little bit. This part is not an all comprehensive tutorial on styling datagrids, I will just touch on what we did for my sample and share a few tips & tricks. Here is the final look. read more...

add a comment |category: |Views: 591

tags: another

What’s new in WPF 3.5 SP1: Splash Screen to improve perceived startup(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Summary: To improve the perception of a more responsive startup experience many WPF applications added a Splash Screen to their startup. The Splash Screen, which does not use WPF code, shows as soon as possible and is displayed until the application main window is rendered. Up until 3.5 Sp1 we pointed developers to sample code available on this blog. In the .Net 3.5 SP1 release we added basic Splash Screen support and new APIs and we recommend that you take advantage of it. (See download locations below) We are distributing the Splash Screen Visual Studio 2008 Sp1 Item Template on WPF Futures sites on www.codeplex.com/wpf. read more...

add a comment |category: |Views: 407

tags: another

XNA, Meet WPF(jmorrill.hjtcentral.com)

submitted by LordLord(3737) 3 years, 9 months ago

The new D3DImage in WPF opens up worlds for WPF. Direct3D content rendered with WPF...it doesn't get any better! The downside is it seems (correct me if I'm wrong) that Microsoft was only targeting unmanaged Direct3D. Yes there is Managed DirectX, but it seems as if MDX is no longer being maintained and it's not so obvious how to get a D3D surface pointer from the API. It really seems MDX has been left in the dust in favor for XNA, which is a very intuitive D3D wrapper. XNA further exacerbates the issue with XNA and WPF. read more...

add a comment |category: |Views: 501

tags: another

Photshop style layer blending in WPF(rakeshravuri.blogspot.com)

submitted by rakeerakee(225) 3 years, 9 months ago

Pixelshader code for Photshop style layer blending in WPF. read more...

add a comment |category: |Views: 220

tags: another

NameScope In C-Sharp And WPF: My Name Is Marlon You Know... (dotnet.dzone.com)

submitted by volume4volume4(910) 3 years, 9 months ago

Did you ever wonder why you can have the same name registered for different parts of your XAML? Here is an example (notice the name “border” in different parts of the XAML) read more...

add a comment |category: |Views: 4

tags: another

WPF tips: Get your own logical parent(immortalratblog.blogspot.com)

submitted by ImmortalRatImmortalRat(55) 3 years, 9 months ago

Do not want to add logical child but want to change the events routing and support logical parents search for inheritance? Use GetUIParentCore(). read more...

add a comment |category: |Views: 41

tags: another