BeginControl.xaml
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
- <mycontrol:ActivityControl x:Class="wxwinter.WFDesignerSl.BeginControl"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Width="80" Height="80"
- Canvas.Left="0" Canvas.Top="0"
-
- xmlns:mycontrol="clr-namespace:wxwinter.WFDesignerSl"
- MouseLeftButtonUp="link_MouseLeftButtonUp"
- >
- <Border
- BorderThickness="1,1,1,1" CornerRadius="40,40,40,40" BorderBrush="#FF000000" >
- <Border.Background>
- <RadialGradientBrush>
- <GradientStop Color="Green" Offset="1"/>
- <GradientStop Color="#FFFFFFFF" Offset="0"/>
- </RadialGradientBrush>
- </Border.Background>
- <Canvas >
- <Thumb Height="20" DragDelta="thumb_DragDelta" Foreground="{x:Null}" Width="55" Canvas.Left="12" Canvas.Top="-7">
-
- </Thumb>
- <TextBlock Width="55" FontSize="14" Text="启动流程" Canvas.Left="10" Canvas.Top="32"/>
- <Image Name="link" MouseLeftButtonUp="link_MouseLeftButtonUp" MouseLeftButtonDown="link_MouseLeftButtonDown" Source="image/link.png" Canvas.Top="63" Canvas.Left="32" Height="16" Width="16" />
- </Canvas>
- </Border>
- </mycontrol:ActivityControl>