DotNetShoutout - Stories tagged with Tip
2
Shouts

WPF 4.5 – Part 10 : Live shaping (live filtering, grouping and sorting of collections) | Jonathan ANTOINE's thoughts on WPF, Silverlight, WinRT, NUI...

posted by jmix90jmix90 596 days, 20 hours, 20 minutes ago
Wednesday, October 05, 2011 2:22:16 PM GMT
For each item list used in a WPF application, a collection view is in fact created and used by the controls. This view enables navigation, filtering, grouping and sorting from the XAML or the code. It is a very powerful feature that is offered to the developers since a long time in WPF. In WPF 4.5 as in WPF 4.0 the grouping, sorting and filtering operations are done when the item is added to the collection or when the Refresh method is called. The drawback is that if an item property value involved in o... (more)
category: How To | clicked: 22 | 1 comment | | source: www.jonathanantoine.com
tags: Filtering, SORTING, to, How-To, WPF, Tip, wpf 4.5, collection, collectionview, How, Tips, grouping
3
Shouts

Windows Phone 7 Tip: Showing and Hiding onscreen keyboard in Emulator © Kunal's Blog

published 705 days, 11 hours, 48 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 707 days, 9 hours, 54 minutes ago
Saturday, June 18, 2011 10:53:45 PM GMT Friday, June 17, 2011 12:47:34 AM GMT
If you are developing any Windows Phone 7 application form and using the Emulator to run the app, you may find this tip very useful. A first time user who feels very annoying to click the mouse button to enter text using the phone emulator can hide the onscreen keyboard and use the computer's keyboard after reading this tip. Read to know more about the small tip which will make your life even easy. (more)
category: Metro | clicked: 1 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight, WindowsPhone7, Windows Phone 7, WP7, wp7dev, Tip, Tips
4
Shouts

Back to Basics – Get Client Computer Name in ASP.NET

published 994 days, 22 hours, 39 minutes ago posted by gilfgilf 995 days, 19 hours, 35 minutes ago
Thursday, September 02, 2010 12:02:39 PM GMT Wednesday, September 01, 2010 3:07:15 PM GMT
Today I had a design review meeting about a new small application that I’m participating in its development as an architect. One of the crucial features in this application was the depending on the ability to identify the client’s computer name (don’t ask me why…). Since this was a crucial thing for my customer I’ve decided to write about it. (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Tip, ASP.NET
3
Shouts

[Performance tips] Use the system shadows instead of your own

posted by jmix90jmix90 1122 days, 12 hours, 22 minutes ago
Tuesday, April 27, 2010 10:19:57 PM GMT
Today a fast and easy tip about shadows and performance. In a project I have recently made, we've told the designer not to use BitmapEffect because they are performance killer. He so decided to create it's own shadows by duplicating each shape and make them looks like shadows. I was then surprised to see that it kills performance too ! (more)
category: How To | clicked: 1 | comment | | source: blog.lexique-du-net.com
tags: System, Aero, shadow, Tips and Tricks, Performance, WPF, Tip, windows presentation foundation, Tips, Tips & Tricks., Shader
5
Shouts

Freeze brushes directly in the XAML to improve your application's performances

published 1136 days, 18 hours, 18 minutes ago posted by jmix90jmix90 1137 days, 13 hours, 31 minutes ago
Tuesday, April 13, 2010 4:24:15 PM GMT Monday, April 12, 2010 9:10:35 PM GMT
When you read the MSDN guidelines to improce WPF's performances you can find that it's a good idea to freeze Freezable objects. It's a quite easy thing to do via the code but it's quite harder to do it directly in the XAML. In this post we will see how to do so. (more)
category: How To | clicked: 6 | comment | | source: blog.lexique-du-net.com
tags: tricks, trick, to, How-To, freeze, Performance, WPF, Tip, how to, freezable, Windows, example, How, Tips, presentation, Foundation
4
Shouts

Simple properties Mapper by reflection : stop copying manually each property of your objects !

published 1140 days, 23 hours, 4 minutes ago posted by jmix90jmix90 1141 days, 13 hours, 4 minutes ago
Friday, April 09, 2010 11:37:28 AM GMT Thursday, April 08, 2010 9:37:50 PM GMT
There is time when you have to copy each property of an object to one another. This is called mapping and it's very fastidious to do it by hand. In this post we'll see how to create a method extension which do it for you in one line of code ! (more)
category: How To | clicked: 4 | comment | | source: blog.lexique-du-net.com
tags: Windows Communication Foundation, Tips and Tricks, trick, How-To, map, Mapping, WPF, Mapper, Tip, how to, windows presentation foundation, Reflection, WCF, ORM, How, Tips
6
Shouts

Binding on a Property which is not a DependencyProperty

published 1144 days, 1 hour, 3 minutes ago posted by jmix90jmix90 1144 days, 21 hours, 52 minutes ago
Tuesday, April 06, 2010 9:38:53 AM GMT Monday, April 05, 2010 12:50:01 PM GMT
A lot of controls expose properties which are not DependencyProperties and then you can’t put a binding on it. On some other cases, you only have a getter as accessor and you can’t put a binding on it too. This is for example the case for the ribbon’s group of the office ribbon or the converter’s parameter. If you ever tried to do so, you surely had an exception throwned : " A 'Binding' cannot be set on the 'SetCEDEJDED' property of type 'Tralala'. A 'Binding' can only be set on a DependencyProperty of ... (more)
category: How To | clicked: 3 | comment | | source: blog.lexique-du-net.com
tags: tricks, dependency object, trick, How-To, Dependency Property, WPF, Binding, Tip, how to, windows presentation foundation, bindings, Tips