jdollah

Stories kicked by jdollah

Silverlight 4 Hack: Use Native/Desktop CLR Without COM Registration(jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 3 months ago

Optimally, it would be nice to be able to add your desktop CLR objects as resources to your XAP, and from Silverlight code, be able to instantiate and use your Desktop .NET classes. This is a hack to do just that without registering any COM dlls. read more...

add a comment |category: |Views: 38

tags: another

Silverlight and Desktop .NET interop(jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 4 months ago

Get a Silverlight Out-of-browser application to use full desktop .NET assemblies without any C++/COM stank. read more...

add a comment |category: |Views: 24

tags: another

Reverse ICommands for MVVM(orktane.com)

submitted by orktaneorktane(300) 2 years, 4 months ago

One of the problems with MVVM designs is the inability of the ViewModel to singularly effect change(s) within the View; yes, you can use data-changes through data-binding as a crude-bludgeon, but I'd rather have the right tools for the right job. And that is where Reverse ICommands come in, they allow you to execute an ICommand in your ViewModel and have it trigger a set of specified action(s) in the View - the reverse taxonomy speaks to the fact that reverse ICommands targets your View rather than the ViewModel. read more...

add a comment |category: |Views: 47

tags: another

Host Silverlight in WPF. Interactive w/o Airspace Restrictions.(silverlightviewport.codeplex.com)

submitted by jdollahjdollah(345) 2 years, 5 months ago

Host Silverlight applications in WPF as if they were just another WPF control. This control is still experimental and not everything is supported just yet. read more...

add a comment |category: |Views: 153

tags: another

How to get access to WPF’s internal Direct3D guts(jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 5 months ago

Get access to WPF's internal IDirect3DDevice9 and SwapChain...even the render thread! read more...

add a comment |category: |Views: 41

tags: another

Direct3D 10/11 & Direct2D in WPF(jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 5 months ago

Direct3D 10/11 & Direct2D in WPF without airspace restrictions. read more...

add a comment |category: |Views: 256

tags: another

New WPF Features: Easing Functions(blogs.msdn.com)

submitted by frank12345frank12345(2809) 2 years, 7 months ago

Easing functions enables adding custom math formulas to your animations. The animations also looks more realistic and smoother. WPF now provides this functionality and as in SL there are 11 such inbuilt functions. Each of these come with 2 Easing Modes read more...

add a comment |category: |Views: 211

tags: another

MVVM with Prism 101 – Part 3b: View Injection and Controller Pattern(developmentalmadness.com)

submitted by developmentalmadnessdevelopmentalmadness(730) 2 years, 7 months ago

In my last post I addressed regions in the Composite Application Library for WPF/Silverlight (Prism). I looked at what they were and how they were used. But by the end of the post I felt that the concept of View Injection needed further attention. I’ve almost exclusively used View Discovery up to this point in my development. But when I’ve run into a need to use View Injection I’m uncomfortable with what seems to be a tightly coupled relationship. read more...

add a comment |category: |Views: 244

tags: another

Anatomy of an MVVM Application *or* How Tards Like Me Make MVVM Apps 2(jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 7 months ago

MVVM apps for r-tards. read more...

add a comment |category: |Views: 64

tags: another

MVVM for Tarded Folks Like Me (jmorrill.hjtcentral.com)

submitted by jdollahjdollah(345) 2 years, 7 months ago

MVVM for 'tards, not dummies. read more...

1 comment |category: |Views: 653

tags: another

YouCube 3.0 - WPF 3D Chromium Browser(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 2 years, 9 months ago

There’s an updated version of YouCube (WPF 3D Web Browser) available based on my Awesomium / Chromium WPF control. read more...

1 comment |category: |Views: 656

tags: another

A Real WPF WebBrowser(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 2 years, 9 months ago

Being able to render and interact with webpages within WPF opens up some great opportunities. While WPF already includes a WebBrowser, it’s just a wrapper around IE’s ActiveX control. Unfortunately this prevents it playing nicely with WPF’s layout system. Mixing Google’s Chromium project, a great wrapper called Awesomium and a little WPF pixie dust, we finally have one... read more...

add a comment |category: |Views: 109

tags: another

Simple Styles for Silverlight from nerdplusart.com(blog.nerdplusart.com)

submitted by bradygasterbradygaster(4897) 2 years, 10 months ago

Finally, we have simple styles for Silverlight! read more...

add a comment |category: |Views: 19

tags: another

CLR Injection: Runtime Method Replacer(codeproject.com)

submitted by ziadelmalkiziadelmalki(130) 2 years, 11 months ago

how the JIT compiles MSIL and create a utility that allow us to programmatically replace any JIT’ed method with another method at runtime. We will also create a debugging utility that will intercept JIT calls and print diagnostics information to the console. read more...

add a comment |category: |Views: 446

tags: another

Var – A Warning(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 11 months ago

Don't over-use var keyword. It's not as clear what is going on if you do. read more...

add a comment |category: |Views: 16

tags: another

.Net Framework 4.0: Using memory mapped files(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 2 years, 11 months ago

.Net Framework 4.0 introduces memory mapped files. Memory mapped files are useful when you need to do in-memory data manipulation and your data structures are large. For large in-memory data the performance of memory mapped file is the best. It is much faster than MemoryStream. And like files on hard disc, memory mapped files can be shared between different programs. read more...

add a comment |category: |Views: 109

tags: another