Gradient brushes within a DrawingBrush : vb « Windows Presentation Foundation « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Windows Presentation Foundation » vbScreenshots 
Gradient brushes within a DrawingBrush
Gradient brushes within a DrawingBrush
     

<Window x:Class="Workspace.DockExample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Workspace" Width="640" Height="480">
      <Rectangle Width="50" Height="50" Grid.Row="2" Grid.Column="1">
        <Rectangle.Fill>
          <VisualBrush>
            <VisualBrush.Visual>
              <StackPanel Background="White">
                <Button Margin="1">A Button</Button>
                <Button Margin="1">Another Button</Button>
              </StackPanel>
            </VisualBrush.Visual>
          </VisualBrush>
        </Rectangle.Fill>
      </Rectangle>

</Window>

   
    
    
    
    
  
Related examples in the same category
1.RotateRotate
2.TranslateTranslate
3.Applies a RotateTransform to the DrawingBrush's RelativeTransform propertyApplies a RotateTransform to the DrawingBrush's RelativeTransform property
4.Style resource with predefined static resourceStyle resource with predefined static resource
5.The Opacity Mask Use the opacity mask brush as a fill to show what it looks likeThe Opacity Mask Use the opacity mask brush as a fill to show what it looks like
6.Desktop to AppWorkspaceDesktop to AppWorkspace
7.StackPanel.Orientation=VerticalStackPanel.Orientation=Vertical
8.Line Joins MiterLine Joins Miter
9.Reference SystemColorsReference SystemColors
10.Document StylesDocument Styles
11.Multiple SoundsMultiple Sounds
12.Animated Text TransformAnimated Text Transform
13.Discrete Point JumpsDiscrete Point Jumps
14.Resource LookupResource Lookup
15.Horizontal Linear Gradient and GradientStopHorizontal Linear Gradient and GradientStop
16.Reflected GradientReflected Gradient
17.Multicolored GradientMulticolored Gradient
18.Shape UnionShape Union
19.Shape XorShape Xor
20.Shape ExcludeShape Exclude
21.A Delay of 0 and Interval of 1 make this a fast slider.A Delay of 0 and Interval of 1 make this a fast slider.
22.Normal Slider (Max=100, Val=10)Normal Slider (Max=100, Val=10)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.