ToolBar button with Customized painting : ToolBar « Windows Presentation Foundation « C# / C Sharp






ToolBar button with Customized painting

ToolBar button with Customized painting
    

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Stretch" VerticalAlignment="Top">
    <ToolBarTray>
      <ToolBar>
        <Button>Second toolbar</Button>
        <Button>
          <Canvas Width="16" Height="16" >
            <Polygon Stroke="Black" SnapsToDevicePixels="True" StrokeThickness="0.5" Points="1.5,14.5 4.5,7.5 15.5,7.5 12.5,14.5" >
              <Polygon.Fill>
                <LinearGradientBrush StartPoint="0.25,0" EndPoint="0.5,1">
                  <GradientStop Offset="0" Color="#FF4" />
                  <GradientStop Offset="1" Color="#CA7" />
                </LinearGradientBrush>
              </Polygon.Fill>
            </Polygon>
          </Canvas>
        </Button>
      </ToolBar>
    </ToolBarTray>
</Page>

   
    
    
    
  








Related examples in the same category

1.ToolBar.ButtonStyleKeyToolBar.ButtonStyleKey
2.Compare the appearances of these controls with the ones in the ToolBar.Compare the appearances of these controls with the ones in the ToolBar.
3.Toolbar TraysToolbar Trays
4.Basic ToolbarBasic Toolbar
5.ToolBarTrayToolBarTray
6.ToolBar in a ToolBarTrayToolBar in a ToolBarTray
7.ToolBarTray and ToolBarToolBarTray and ToolBar
8.Display a ToolbarDisplay a Toolbar
9.ToolBar and Button, ToggleButton, ComboBox and SeparatorToolBar and Button, ToggleButton, ComboBox and Separator