Use outter resource or inner resource : Resource « 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 » ResourceScreenshots 
Use outter resource or inner resource
       

<Window x:Class="Resources.TwoResources"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Resources" Height="300" Width="300">

  <Window.Resources>
    <ImageBrush x:Key="TileBrush" TileMode="Tile"
                ViewportUnits="Absolute" Viewport="0 0 32 32"
                ImageSource="c:\image.jpg" Opacity="0.3"></ImageBrush>
  </Window.Resources>
  <StackPanel Margin="5">
    
    <Button Background="{StaticResource TileBrush}" Padding="5"
            FontWeight="Bold" FontSize="14" Margin="5"
              >A Tiled Button</Button>

    <Button Padding="5" Margin="5" FontWeight="Bold" FontSize="14">
      <Button.Resources>
        <ImageBrush x:Key="TileBrush" TileMode="Tile"
                    ViewportUnits="Absolute" Viewport="0 0 10 10"
                    ImageSource="c\image.jpg" Opacity="0.3"></ImageBrush>
      </Button.Resources>
      <Button.Background><StaticResource ResourceKey="TileBrush" /></Button.Background>
      <Button.Content>Another Tiled Button</Button.Content>
    </Button>

  </StackPanel>

</Window>

   
    
    
    
    
    
    
  
Related examples in the same category
1.Window level resource
2.Button style as Window resourceButton style as Window resource
3.Event Triggers as ResourceEvent Triggers as Resource
4.Reuse Font With ResourcesReuse Font With Resources
5.Define Double value as resourceDefine Double value as resource
6.Add a logical resource to the window's resource dictionaryAdd a logical resource to the window's resource dictionary
7.Font Size ResourcesFont Size Resources
8.Use EnvironmentInfo as ResourceUse EnvironmentInfo as Resource
9.Dynamic Resource: SystemColors.InactiveCaptionBrushKeyDynamic Resource: SystemColors.InactiveCaptionBrushKey
10.Load Resource for Application
11.No Logical ResourcesNo Logical Resources
12.Logical ResourcesLogical Resources
13.Relative pack URI referring to external component for a ResourceRelative pack URI referring to external component for a Resource
14.Find Control Styles with FindResource()Find Control Styles with FindResource()
15.TextGeometry as ResourceTextGeometry as Resource
16.Retrieving assembly manifest resources
17.Get Resource Names from AssemblyGet Resource Names from Assembly
18.Find Resource with FindResourceFind Resource with FindResource
19.Create Collection based Resource for data bindingCreate Collection based Resource for data binding
20.Wrap collection based resource in a CollectionViewSourceWrap collection based resource in a CollectionViewSource
21.Add event handler to StackPanel in StackPanel resourceAdd event handler to StackPanel in StackPanel resource
22.Add Event handler in Panel ResourceAdd Event handler in Panel Resource
23.DataGridView and ResourceDataGridView and Resource
24.Dynamic ResourceDynamic Resource
25.Load Assembly ResourcesLoad Assembly Resources
26.BitmapImage as ResourcesBitmapImage as Resources
27.Cropped image as Resource
28.Load Xaml ResourceLoad Xaml Resource
29.Use Resources.Add to add static resouce from codeUse Resources.Add to add static resouce from code
30.Event Setter from ResourcesEvent Setter from Resources
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.