<TextBox Text="It's a TextBox control"> <TextBox.Style> <Style TargetType="TextBox"> <Setter Property="Template"> <Setter.Value> <ControlTemplate> <Path Style="{StaticResource Process}" ToolTip="Process"> <s:DesignerItem.DragThumbTemplate> <ControlTemplate> <Path Style="{StaticResource Process_DragThumb}"/> </ControlTemplate> </s:DesignerItem.DragThumbTemplate> </Path> </ControlTemplate> </Setter.Value> </Setter> </Style> </TextBox.Style> </TextBox>
<Style x:Key="Process" TargetType="Path" BasedOn="{StaticResource FlowChartItemStyle}"> <Setter Property="Data" Value="M 0,0 H 60 V40 H 0 Z"/> </Style> <Style x:Key="Process_DragThumb" TargetType="Path" BasedOn="{StaticResource Process}"> <Setter Property="IsHitTestVisible" Value="true"/> <Setter Property="Fill" Value="Transparent"/> <Setter Property="Stroke" Value="Transparent"/> </Style>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)