39 lines
2.5 KiB
XML
39 lines
2.5 KiB
XML
<Border x:Class="PCL.MySlider"
|
|||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="16" d:DesignWidth="162"
|
||
|
|
FocusVisualStyle="{x:Null}"
|
||
|
|
MinHeight="16" UseLayoutRounding="False" SnapsToDevicePixels="False"
|
||
|
|
BorderBrush="{DynamicResource ColorBrushBg0}" Name="PanBack"
|
||
|
|
Background="{StaticResource ColorBrushSemiTransparent}" Focusable="True">
|
||
|
|
<Grid x:Name="PanMain" MinHeight="16" MaxHeight="16" IsHitTestVisible="False">
|
||
|
|
<Line Height="4" Name="LineBack" Stroke="{DynamicResource ColorBrushBg0}" Opacity="0.3" StrokeThickness="1"
|
||
|
|
X2="10000" Y1="2" Y2="2" HorizontalAlignment="Right" Width="0" SnapsToDevicePixels="True"
|
||
|
|
Margin="0,0,1,0" />
|
||
|
|
<Line Height="4" Name="LineFore" Stroke="{Binding ElementName=PanBack, Path=BorderBrush}" StrokeThickness="2"
|
||
|
|
X2="10000" Y1="2" Y2="2" Width="0" HorizontalAlignment="Left" SnapsToDevicePixels="True" Margin="1,0,0,0" />
|
||
|
|
<Ellipse HorizontalAlignment="Left" Width="10" Height="10"
|
||
|
|
Stroke="{Binding BorderBrush, ElementName=PanBack}" StrokeThickness="1.2"
|
||
|
|
Fill="{DynamicResource ColorBrushBg0}" Name="ShapeDot" VerticalAlignment="Center"
|
||
|
|
RenderTransformOrigin="0.5,0.5">
|
||
|
|
<Ellipse.RenderTransform>
|
||
|
|
<ScaleTransform />
|
||
|
|
</Ellipse.RenderTransform>
|
||
|
|
</Ellipse>
|
||
|
|
<Popup Name="Popup" AllowsTransparency="True" IsHitTestVisible="False" PopupAnimation="Fade"
|
||
|
|
VerticalOffset="38" HorizontalOffset="{Binding Margin.Left, ElementName=ShapeDot}" Placement="Center"
|
||
|
|
PlacementRectangle="8,0,0,0">
|
||
|
|
<Border BorderBrush="{DynamicResource ColorBrush1}" BorderThickness="1.5" CornerRadius="3" MaxWidth="500"
|
||
|
|
Background="{DynamicResource ColorBrushWhite}" Margin="0,0,4,4" SnapsToDevicePixels="True">
|
||
|
|
<Border.Effect>
|
||
|
|
<DropShadowEffect Opacity="0.4" BlurRadius="4" ShadowDepth="2" />
|
||
|
|
</Border.Effect>
|
||
|
|
<TextBlock Name="TextHint" TextWrapping="Wrap" Foreground="{DynamicResource ColorBrush1}" Margin="7,5"
|
||
|
|
FontSize="12" />
|
||
|
|
</Border>
|
||
|
|
</Popup>
|
||
|
|
</Grid>
|
||
|
|
</Border>
|