Welcome to Windows Presentation Foundation (WPF)
Top Tasks :

WPF Community Bloggers

Wednesday, September 26, 2007 - Posts

  • Google Books Just Can't Get It Right

    Google Book Search has a new front page that is heading in such a completely wrong direction that I can only conclude that the problems I cited in 1 , 2 , 3 , 4 recent blog entries are unfixable. They've gone to a "featured books" layout with categories much like a chain bookstore. Have they now given up any pretense that this is a library? The Inside Google Book Search blog entry announcing this new home page begins: "Every time I go into a bookstore or library, I go straight to the sports section, to check out the newest books on running." I'm sure this is a perfectly honest statement — except possibly for the "or library" part — but what relevance does it have to a repository of mostly old books and periodicals? Instead of locating the newest books on running, what if someone wants to use Google Book Search to research some of the oldest books and magazine articles on running? Searches based on date are potentially the most powerful aspect of a repository such as Google Read More...
  • Neil’s Color Picker

    This is one of those apps that is so integrated into my workflow that I don’t even notice how much I use it unless I happen to not have it for some reason.  It’s a color “liftter” that sits in the system tray, waiting to tell you the color of the pixel below your cursor.  [...] Read More...
  • WPF Animations in Code without Storyboards

    In XAML, you define animations in storyboards. You can also use storyboards in code, but they're rather messy and in most cases completely unnecessary. I mention this because many questioners (and even some answerers) in the MSDN WPF Forum seem to be unaware of the very powerful and very easy BeginAnimation method. You can't use BeginAnimation in XAML, but it's definitely the way to go when you're defining and triggering animations in code. The following WPF classes define a BeginAnimation method: Animatable UIElement ContentElement Visual3D These base classes account for quite a large chunk of WPF! You call BeginAnimation on the object that has the property you want to animate. The first argument to BeginAnimation is the fully-qualified named of the dependency property to animate. For example, suppose you have a Button named btn and you want to animate the FontSize property. You call: btn.BeginAnimation(Button.FontSizeProperty, ... Of course, the Button class inherits the FontSize property Read More...
  • [WPF] Comment se binder au contenu des fichiers de ressources (*.resx) ?

    Voila une question très intéressante qui revient assez souvent sur différents forums: Comment réaliser un binding entre votre interface graphique et le contenu de fichier ressources. La technique, qui peut-être utilisée pour faire une application mul... Read More...

Copyright © 2006 Microsoft Corporation. All Rights Reserved. | Terms of Use | Privacy Statement | Contact Us