Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


CSharp Programming

CSharp > Code Examples

PenLineJoin.Bevel

PenLineJoin.Bevel <StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Orientation="Horizontal"> <StackPanel.Resources> <Style TargetType="{x:Type TextBlock}"> <Setter Property="Canvas.Left" Value="23" /> </Style> <Style TargetType="{x:Type Canvas}"> <Setter Property="Width" Value="180" /> <Setter Property="Margin" Value="16" /> </Style> <Style TargetType="{x:Type Rectangle}"> <Setter Property="Width" Value="120" /> <Setter Property="Height" Value="90" /> <Setter Property="Canvas.Top" Value="45" /> <Setter Property="Canvas.Left" Value="25" /> <Setter Property="Stroke" Value="Black" /> <Setter Property="StrokeThickness" Value="25" /> </Style> </StackPanel.Resources> <Canvas> <TextBlock Text="PenLineJoin.Bevel" /> <Rectangle StrokeLineJoin="Bevel" /> </Canvas> </StackPanel>