在WPF中,如何设置折叠纸笔尖到矩形或任何其他控件的样式

时间:2010-08-09 06:43:15

标签: wpf styles

我设法设置了一个矩形样式,使得右上角有折叠纸尖图像样式。我的要求是我需要具有多文档视图图像的样式。我能够在xaml下面找到这个。现在我需要设置折叠纸尖图像样式。

提前致谢。

RAMAS

<Window x:Class="ExpandTreeViewWPF.Window2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window2" Height="300" Width="300">
   <Window.Resources>
      <VisualBrush x:Key="Icon">
         <VisualBrush.Visual>
            <Canvas Width="10" Height="10">

               <Rectangle  Width="20" Height="20" Fill="White"  StrokeThickness=".2" Stroke="Gray"     Canvas.Left="1" Canvas.Top="2"/>
               <Rectangle Width="20" Height="20" Fill="White" StrokeThickness=".2" Stroke="Gray"  Canvas.Left="2" Canvas.Top="1"/>
               <Rectangle Width="20" Height="20" Fill="White"  StrokeThickness=".2" Stroke="Gray"  Canvas.Left="3" Canvas.Top="0"/>
            </Canvas>
         </VisualBrush.Visual>
      </VisualBrush>
   </Window.Resources>
    <Grid>
      <ListBox>
         <Border Background="{StaticResource Icon}">
         <ListBoxItem Padding="50">One</ListBoxItem>
            </Border>
         <ListBoxItem>Two</ListBoxItem>
         <ListBoxItem>Three</ListBoxItem>
      </ListBox>
   </Grid>
</Window>

1 个答案:

答案 0 :(得分:0)

对于外部矩形,我将以下样式设置为Fill属性。