• Sign In
 
  • MSDN Blogs
  • Microsoft Blog Images
  • More ...
Common Tasks
  • Blog Home
  • RSS for comments
  • RSS for posts
  • Atom
Translate This Page
WPF Links
  • Windows Presentation Foundation User Education

  • WPF “How Do I” videos on WindowsClient.NET

  • WPF Walkthroughs

  • WPF Tutorial.net by Christian Mosers

  • Windows Presentation Foundation FAQ

  • WPFwiki FAQ

  • WPF Text Blog

  • What's New in WPF Version 4

  • WPF 4 Release: A guide to the new features

  • WPF 4 (ScottGu's VS 2010 and .NET 4.0 Series)

  • WPF Performance and .NET Framework Client Profile

Recent Posts
  • Ribbon Browser Application without the title row

    Posted over 2 years ago
    by Varsha [MSFT]
  • Images in Ribbon Sample

    Posted over 2 years ago
    by Varsha [MSFT]
  • Picking the right resolution for RibbonWindow's Icon

    Posted over 2 years ago
    by Varsha [MSFT]
  • Visual improvements for RibbonQuickAccessToolBar

    Posted over 2 years ago
    by Varsha [MSFT]
  • WPF ZoomableCanvas with a million items (from Kael Rowan)

    Posted over 2 years ago
    by Rob Relyea [MSFT]
Search
  • Advanced search options...
Archives
Archives
  • May 2011 (1)
  • November 2010 (1)
  • October 2010 (5)
  • August 2010 (14)
  • July 2010 (9)
Tags
  • Cache Composition
  • ClearType
  • ClickOnce
  • CodePlex
  • Control
  • Controls
  • Dimensions
  • EffectiveLeft
  • EffectiveTop
  • Graphics
  • Height
  • Mind Map
  • Ribbon
  • RibbonWindow
  • Rich Client
  • Skinning
  • Text
  • Themes
  • Unleashed
  • WebBrowser
  • Width
  • Windows 7
  • WinForms
  • WPF
  • WPF 4
Blog - Title

August, 2010

Der deutsche Education Blog

August, 2010

The official blog of the Windows Presentation Foundation Team

MSDN Blogs > WPF Team Blog > August, 2010
  • Subscribe via RSS
Sort by: Most Recent | Most Views | Most Comments
Excerpt View | Full Post View
  • WPF Team Blog

    Ribbon Browser Application without the title row

    Posted over 2 years ago
    by Varsha [MSFT]
    • 2 Comments
    We have received a query about being able to hide the title panel in a Ribbon Browser Application. As always this can be achieved by finding the appropriate element within the Ribbon template and manipulating its Visibility. The attached project demonstrates...
  • WPF Team Blog

    Images in Ribbon Sample

    Posted over 2 years ago
    by Varsha [MSFT]
    • 4 Comments
    We have received some feedback about the blurriness of the images in the Ribbon sample that was published alongside the Ribbon release . We would like to clarify that the sole purpose of this sample application is to showcase the API capabilities for...
  • WPF Team Blog

    Picking the right resolution for RibbonWindow's Icon

    Posted over 2 years ago
    by Varsha [MSFT]
    • 0 Comments
    It has been reported that when using an icon file as RibbonWindow.Icon, the icon is rendered blurry due to bitmap scaling. The reason for this issue is the inherent behavior of WPF Image element to simply display the first decoded bitmap frame within...
  • WPF Team Blog

    Visual improvements for RibbonQuickAccessToolBar

    Posted over 2 years ago
    by Varsha [MSFT]
    • 3 Comments
    Here are couple of scenarios that can be improved. The contents of the QuickAccessToolBar show far too low within the title area of the window. It is preferable that the left and right separators for a RibbonQuickAccessToolBar not show if this...
  • WPF Team Blog

    WPF ZoomableCanvas with a million items (from Kael Rowan)

    Posted over 2 years ago
    by Rob Relyea [MSFT]
    • 0 Comments
    Kael Rowan just posted " ZoomableApplication2: A million items ", a post that should be very helpful to some WPF Application developers. We've definitely seen many applcations built that have a designer like surface (zoomable, pannable) with many boxes...
  • WPF Team Blog

    Preview: WPF 4 Unleashed - Why WPF, and What About Silverlight

    Posted over 2 years ago
    by tedwpfatmsft
    • 2 Comments
    Hey WPFers, WPF4 Unleashed has been, well, unleashed! Get a preview of Chapter 1 @ http://bit.ly/cwGYbY . Enjoy! My name is Ted Hu, a Senior Program Manager for the WPF Team. I love hearing from customers - please let me...
  • WPF Team Blog

    SystemMenu does not show correctly when Ribbon application is run against .Net 4.0.

    Posted over 2 years ago
    by Varsha [MSFT]
    • 3 Comments
    It has been reported that when using a Ribbon hosted in a RibbonWindow in an application targeting .Net 4.0, the SystemMenu does not show in the correct location. See screenshot below. Please note that this bug does not exist when targetting .Net...
  • WPF Team Blog

    How do I add Galleries to my Ribbon?

    Posted over 2 years ago
    by Varsha [MSFT]
    • 2 Comments
    RibbonGallery is a new metaphor introduced as part of the Ribbon UI. It is a control that visualizes a list of RibbonGalleryItems that are grouped into RibbonGalleryCategories . RibbonGallery is typically used to visualize a set of related choices that...
  • WPF Team Blog

    How can I add rich ToolTips to my Ribbon controls?

    Posted over 2 years ago
    by Varsha [MSFT]
    • 0 Comments
    There are six properties on each Ribbon control that enable creation of rich ToolTips such as the one shown below. ToolTipTitle ToolTipDescription ToolTipImageSource ToolTipFooterTitle ToolTIpFooterDescription...
  • WPF Team Blog

    Why should I use a RibbonWindow?

    Posted over 2 years ago
    by Varsha [MSFT]
    • 6 Comments
    RibbonWindow is a subclass of the regular WPF Window that provides additional services to be able to integrate Ribbon components with the Window Chrome. To demonstrate this use the sample application from the previous post . Right-click...
  • WPF Team Blog

    Bind my Ribbon UI to my data model

    Posted over 2 years ago
    by Varsha [MSFT]
    • 0 Comments
    The recommended way to bind the Ribbon UI to a data model is to encapsulate the command and the state associated with each control into a data object that is used as the DataContext for that control. You can then apply an implicit Style to the control...
  • WPF Team Blog

    Add more content to my Simple Ribbon Application

    Posted over 2 years ago
    by Varsha [MSFT]
    • 2 Comments
    To add more content to the Simple Ribbon Application that we created in the previous post , you can drag-drop variety of elements from the VS toolbox onto the Ribbon. Drag RibbonGroup to the Home Tab and name it Group2 . Drag three...
  • WPF Team Blog

    Building a Simple Ribbon Application in WPF

    Posted over 2 years ago
    by Varsha [MSFT]
    • 0 Comments
    The simplest way to get started is to use the WPF Ribbon Application project template. Install VS 2010 Install Microsoft Ribbon for WPF Launch VS 2010 Add New Project – WPF Ribbon Application If...
  • WPF Team Blog

    Introducing Microsoft Ribbon for WPF

    Posted over 2 years ago
    by Varsha [MSFT]
    • 26 Comments
    They say that a picture speaks a thousand words. So here are some to whet your appetite. Read next post to get started using the WPF Ribbon. Pete Brown's blog post about the WPF Ribbon makes an interesting read as well. WPF Ribbon Application VS...
Page 1 of 1 (14 items)
  • © 2012 Microsoft Corporation.
  • Terms of Use
  • Trademarks
  • Privacy Statement
  • Report Abuse
  • 5.6.402.223