Click here to Skip to main content
15,867,299 members
Articles / Desktop Programming / WPF

WPF Diagram Designer: Part 1

Rate me:
Please Sign up or sign in to vote.
4.97/5 (297 votes)
23 Aug 2008CPOL7 min read 925.3K   62.3K   679  
Drag, resize and rotate elements on a Canvas
<Application x:Class="DragResizeRotateItems.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="Window1.xaml">
  <Application.Resources>

    <LinearGradientBrush x:Key="RectBackground" StartPoint="0,0" EndPoint="0,1" >
      <GradientStop Color="#FEFEFE" Offset="0"/>
      <GradientStop Color="#BDBEDE" Offset="1"/>
    </LinearGradientBrush>

  </Application.Resources>
</Application>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Austria Austria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions