jmix90
Name: jmix90
Score: 940.24
Last Seen: 488 days, 15 hours, 13 minutes ago
Member Since: 20 April, 2009
DotNetShoutout
atom rss
3
Shouts

Windows 8 : Metro’s Grid Application – what, how and when ?

posted by jmix90jmix90 611 days, 11 hours, 47 minutes ago
Thursday, September 15, 2011 6:18:41 PM GMT
Windows 8 is here and Visual Studio 2011 comes with it hand in hand. As you may already have read/seen/watch, there is a new set of applications coming named as ‘metro’. Visual Studio 2011 then comes with templates for different types of applications: basic Application, Grid Application and Split Application. Each one helps you create application for windows 8 with the metro style. In this post we are going to explore in details a first type of application template: the Grid Application. (more)
category: UX | clicked: 47 | comment | | source: www.jonathanantoine.com
tags: C#, intro, Windows, metro, XAML, Windows8, presentation
3
Shouts

WPF’s DataGridCheckBoxColumn ElementStyle uses a wrong default value

published 620 days, 23 hours, 40 minutes ago posted by jmix90jmix90 621 days, 6 hours, 32 minutes ago
Tuesday, September 06, 2011 6:26:05 AM GMT Monday, September 05, 2011 11:33:21 PM GMT
Today I found out a strange behavior in the DataGridCheckBoxColumn: it was not using the default template I set in the resources for the CheckBoxes and uses the default WPF’s one instead. This happens always when you set the AutoGeneratedColumns option to true and a work-around exists otherwise. (more)
category: How To | clicked: 10 | 1 comment | | source: www.jonathanantoine.com
tags: DataGrid, Checkbox, WPF, Bug
4
Shouts

Convert in code as in XAML: how to get the XAML processor’s converter

published 623 days, 19 hours, 45 minutes ago posted by jmix90jmix90 624 days, 21 hours, 29 minutes ago
Saturday, September 03, 2011 10:20:57 AM GMT Friday, September 02, 2011 8:37:05 AM GMT
Sometimes you need to set property on controls from the code and then you realize that this is not like in XAML: these are not strings? No, they are not! This is because the XAML processor convert the string to the correct type when it process the XAML. In this post we’ll see how to reproduce the same behavior from the code: a little snippet which can help you someday ! (more)
category: How To | clicked: 3 | 4 comments | | source: www.jonathanantoine.com
tags: processor, Converter, How-To, WPF, XAML
4
Shouts

Refreshthe WPF UI now: how to wait for the rendering to finish ?

published 623 days, 19 hours, 45 minutes ago posted by jmix90jmix90 624 days, 22 hours, 31 minutes ago
Saturday, September 03, 2011 10:20:57 AM GMT Friday, September 02, 2011 7:34:25 AM GMT
WPF is really awesome to build reactive applications and data binding is here to push useful information inside of the User Interface. All is done magically and it’s wonderfully simple to create an application without knowledge of the internals of the WPF’s rendering. Now, I wan’t to talk about something which can useful in every WPF application : how to wait for the rendering UI to be done. This can also be rephrased to : “how to force the rendering after I performed an action ?“. (more)
category: How To | clicked: 58 | 5 comments | | source: www.jonathanantoine.com
tags: Rendering, How-To, Performance, WPF, Force, UI, refresh, How
2
Shouts

Do you want a faster File.Exists / FileInfo.Exists / Directory.Exists ? I do !

posted by jmix90jmix90 639 days, 9 hours, 48 minutes ago
Thursday, August 18, 2011 8:17:36 PM GMT
Sometimes you need to check the existence of a file. Nothing is easier with the .Net framework which provide a property named Exists on FileInfo class. But it can be quite long, especially when the file is on a network drive. If so you’ll have to wait for a time-out to know that the file is not reachable. (more)
category: How To | clicked: 7 | comment | | source: www.jonathanantoine.com
9
Shouts

Workaround For Crash In Performance Profiling Tools for WPF - Arik Poznanski's Blog

published 689 days, 21 hours, 11 minutes ago posted by arikarik 692 days, 21 hours, 42 minutes ago
Wednesday, June 29, 2011 8:54:36 AM GMT Sunday, June 26, 2011 8:23:58 AM GMT
Workaround For Crash In Performance Profiling Tools for WPFIntroduction Every WPF developer knows the situation where you have a large line-of-business application, you’ve implemented all the features and when you finally run it on real data – it runs s-l-o-w.Optimization Time! Optimization for performance is fun since a 1% change of code gets you 99% change in performance. However, finding the one location you should change can be a pain. This is why we’ve invented performance profilers. Profilers ca... (more)
category: Smart Client | clicked: 50 | 3 comments | | source: blogs.microsoft.co.il
tags: Performance, WPF
3
Shouts

Jonathan ANTOINE's blog - Amazing WPF Controls / JetPack Theme updated ! - Yet another blog about WPF, Surface, SL, MVVM, NUI....

posted by jmix90jmix90 705 days, 17 hours, 56 minutes ago
Monday, June 13, 2011 12:09:21 PM GMT
The amazing wpf controls library has been updated on codeplex. Check what's new ! (more)
category: UX | clicked: 23 | 1 comment | | source: blog.lexique-du-net.com
tags: Update, Theme, Control, WPF, CodePlex, fix, controls
3
Shouts

How to call the method from the base of the base of the current class ? (base.base.MyMethod)

posted by jmix90jmix90 738 days, 8 hours, 5 minutes ago
Wednesday, May 11, 2011 10:00:19 PM GMT
In this post we will discover how to call a second-level base method on a class. Actually, this would be like using base.base.MyMethod() was working in C# ! It can be interesting when we need to skip one implementation in the inheritance path... (more)
category: How To | clicked: 1 | comment | | source: blog.lexique-du-net.com
tags: .NET, Delegate, Inheritance, C#, base
3
Shouts

What ? Dynamic resources creates Memory leaks in WPF 3.5 (SP1) ???

published 781 days, 15 hours, 12 minutes ago posted by jmix90jmix90 783 days, 13 hours, 49 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Sunday, March 27, 2011 4:16:22 PM GMT
Everyone is told to not use DynamicResource during its childhood in WPF-(wonder)land. They are simply evil and they kill the app performance. Sometimes, we fall in the dark side of the force and use them effectively to be sure that the application will follow the trend and suits itself well. This is not as bad as it seems and it is in fact sometimes necessary and wanted. But today, while I was trying to improve the performance and the memory usage of a WPF application I work on, I discovered that they w... (more)
category: How To | clicked: 4 | comment | | source: blog.lexique-du-net.com
tags: Resources, WPF 3.5, dynamicresource, fix, Memory Leaks, memory leak
6
Shouts

UIAutomation, Coded UI tests, AutomationPeer and WPF/silverlight custom controls

published 784 days, 9 hours, 10 minutes ago posted by jmix90jmix90 787 days, 6 hours, 55 minutes ago
Saturday, March 26, 2011 8:56:13 PM GMT Wednesday, March 23, 2011 11:10:28 PM GMT
In this post, we will see how to make a custom control fully useable in Coded UI tests scenarii. We will so answer the question "Why the code UI test recorder can't find anything inside my WPF or Silverlight custom control ?" Note: the same technique is used by accessibility client and by enabling this feature you also ease the people using your application through UI automation client like the partially-sighted person. (more)
category: How To | clicked: 39 | 1 comment | | source: blog.lexique-du-net.com
tags: Automation, Test Automation, Silverlight, Coded UI Test, WPF, custom
8
Shouts

Developing for Multicore machines. Tasks in .NET 4.0 - Why/What/How?

published 1109 days, 20 hours, 17 minutes ago posted by http://web2trends.blogspot.com/http://web2trends.blogspot.com/ 1111 days, 12 hours, 6 minutes ago
Wednesday, May 05, 2010 9:48:26 AM GMT Monday, May 03, 2010 5:59:48 PM GMT
With those multi core processors everywhere, support for parallelism is an already implicit requirement for any new application. This post explores how easily you can implement parallel features in your application, with Tasks in .NET 4.0. (more)
category: How To | clicked: 1 | 2 comments | | source: amazedsaint.blogspot.com
tags: C#, tasks, .Net 4.0, Parallelism
4
Shouts

[RIA Services] Why the client extended entities won't use the default backing store value ?

published 911 days, 3 hours, 38 minutes ago posted by jmix90jmix90 911 days, 14 hours, 47 minutes ago
Saturday, November 20, 2010 2:28:02 AM GMT Friday, November 19, 2010 3:18:58 PM GMT
The title may not be clear but I am talking about the entities that you extends on the client side using the fact that they are partial class. You may think as I was that if you add properties in them with backing store field, the properties will get initialed nicely : this is not the case and the property will always use the default value for the property type. In this post we’ll discover how to perform our goal : create a property with the correct default value. (more)
category: Metro | clicked: 6 | comment | | source: blog.lexique-du-net.com
tags: Silverlight, Serialization, RIA Services, How-To, RIA Service, Properties, How
3
Shouts

How to locate the active document in the solution explorer using a shortcut

published 926 days, 7 hours, 49 minutes ago posted by jmix90jmix90 926 days, 18 hours, 22 minutes ago
Thursday, November 04, 2010 10:17:02 PM GMT Thursday, November 04, 2010 11:43:44 AM GMT
When you have multiple projects in your solution, you often want to locate the active document in the solution explorer. There is a great option in Visual Studio which can do it for you all the time : “View.TrackActivityInSolutionExplorer”.   But if you do not want (as me) to turn it on all the time, there is no specific option or shortcut... (more)
category: UX | clicked: 1 | comment | | source: blog.lexique-du-net.com
tags: Macro, Tips and Tricks, trick, active, Shortcuts, Visual Studio, Tips
6
Shouts

Introducing the amazing WPF controls library on Codeplex !

published 933 days, 11 hours, 31 minutes ago posted by jmix90jmix90 934 days, 17 hours, 57 minutes ago
Thursday, October 28, 2010 6:34:36 PM GMT Wednesday, October 27, 2010 12:08:13 PM GMT
I am pleased to announce you the creation of the Amazing WPF controls library on Codeplex ! It will contains the differents controls I describe and/or peel on this blog. I will try to make an article for each control added to the library. (more)
category: How To | clicked: 7 | comment | | source: blog.lexique-du-net.com
tags: Control, WPF, windows presentation foundation, controls
3
Shouts

How to create an hand writing to text control (ink recognizer)

published 936 days, 17 hours, 41 minutes ago posted by jmix90jmix90 936 days, 22 hours, 16 minutes ago
Monday, October 25, 2010 12:24:46 PM GMT Monday, October 25, 2010 7:49:34 AM GMT
When building a (multi)touch application you may need one nice feature : translate hand-written text to real words. This open a whole new world full of possibilities like starting some actions when keywords are recognized or simply allow the users to write some text for later use. In this post we'll see all the step to create an hand writing to text control and how to tune it. (more)
category: How To | clicked: 4 | comment | | source: blog.lexique-du-net.com
tags: hand writing, ink, Control, WPF, how to, inkanalyzer, drawing, controls
5
Shouts

[RIA Services] How to force validation on my entities (and just the validation !)

published 941 days, 9 hours, 14 minutes ago posted by jmix90jmix90 942 days, 19 hours, 39 minutes ago
Wednesday, October 20, 2010 8:51:26 PM GMT Tuesday, October 19, 2010 10:27:08 AM GMT
RIA services solves for you a lot of problems and one of them is to add validations rules on the entities both on the client and on the server side. These differents rules are checked when you submit the changes from the client to the server or when you call “EndEdit” on the entities. But there is times when you want to leverage the validation without submit the changes or commit your object modification (in a IEditableObject way of talking). In this post we will discover how to do just this. (more)
category: Metro | clicked: 26 | comment | | source: blog.lexique-du-net.com
tags: Validation, Silverlight, RIA Services, How-To, DataForm, RIA Service, how to, riaservices, ria-services, How, Validator, IEditableObject
6
Shouts

Migrate the Jetpack theme from Silverlight to WPF

published 943 days, 15 hours, 30 minutes ago posted by jmix90jmix90 946 days, 6 hours, 26 minutes ago
Monday, October 18, 2010 2:36:01 PM GMT Friday, October 15, 2010 11:39:17 PM GMT
There is a great theme named Jetpack available for Silverlight applications which can be found on the Tim Heuer web site. I was wondering if it can be used in WPF applications and the answer is yes ! *Here are the modifications I had to do to make all this work. * (more)
category: How To | clicked: 28 | comment | | source: blog.lexique-du-net.com
tags: Silverlight, Themes, Theme, to, How-To, WPF, windows presentation foundation, How, Tips
2
Shouts

How to create your own control library (how-to + tips)

posted by jmix90jmix90 957 days, 14 hours, 24 minutes ago
Monday, October 04, 2010 3:41:33 PM GMT
Reusability and factorizing are maybe the most commons things you want and use when you are developing applications. In WPF it often means creating controls library (i don’t mean UserControl) that will be easy to use in multiple applications. In this post we'll see all the step to create a control library useable in differents projects. (more)
category: How To | clicked: 7 | comment | | source: blog.lexique-du-net.com
tags: library, Resources, Control, How-To, Test, WPF, Tests, custom, windows presentation foundation, resource, How, Tips, ContentControl, controls
3
Shouts

MVVM and Prism (Quick Overview)

published 959 days, 9 hours, 39 minutes ago posted by faisalhossainfaisalhossain 961 days, 12 hours, 33 minutes ago
Saturday, October 02, 2010 8:26:24 PM GMT Thursday, September 30, 2010 5:33:12 PM GMT
•    Model – View – ViewModel •    Separation of concerns •    View = handles UI •    Model = contains the pure data •    ViewModel = communicates between View and Model through bindings •    Works GREAT for Silverlight and WPF •    XAML based data bindings •    Testable The MVVM Triad View  = Display data in Controls ViewModel = UI Friendly Entities, UI State, Actions Model = Entities representing data Model • ... (more)
category: Smart Client | clicked: 2 | comment | | source: alihamza.wordpress.com
tags: Silverlight, WPF, MVVM, Prism
4
Shouts

Thread local variables with ThreadLocal(T)

published 959 days, 9 hours, 39 minutes ago posted by http://baldi.myopenid.com/http://baldi.myopenid.com/ 962 days, 16 minutes ago
Saturday, October 02, 2010 8:26:24 PM GMT Thursday, September 30, 2010 5:49:52 AM GMT
.NET 4.0 provides a thread local storage, simply by adding a field of type ThreadLocal (more)
category: How To | clicked: 2 | comment | | source: www.mbaldinger.com
tags: .NET, threads