Line | |
---|
1 | <Grid x:Class="Microsoft.Research.DynamicDataDisplay.MagnifyingGlass"
|
---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
---|
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
---|
4 | Name="magnifyingCanvas" IsHitTestVisible="False"
|
---|
5 | >
|
---|
6 | <Grid.Style>
|
---|
7 | <Style TargetType="{x:Type Grid}">
|
---|
8 | <Setter Property="Width" Value="100"/>
|
---|
9 | <Setter Property="Height" Value="100"/>
|
---|
10 | </Style>
|
---|
11 | </Grid.Style>
|
---|
12 |
|
---|
13 | <Ellipse Fill="White" Name="whiteEllipse"/>
|
---|
14 | <Ellipse Name="magnifierEllipse" StrokeThickness="3">
|
---|
15 | <Ellipse.Fill>
|
---|
16 | <VisualBrush ViewboxUnits="Absolute" Viewbox="0,0,50,50"
|
---|
17 | ViewportUnits="RelativeToBoundingBox" Viewport="0,0,1,1"/>
|
---|
18 | </Ellipse.Fill>
|
---|
19 | <Ellipse.Stroke>
|
---|
20 | <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
---|
21 | <GradientStop Offset="0" Color="#AAA" />
|
---|
22 | <GradientStop Offset="1" Color="#111" />
|
---|
23 | </LinearGradientBrush>
|
---|
24 | </Ellipse.Stroke>
|
---|
25 | </Ellipse>
|
---|
26 | </Grid>
|
---|
Note: See
TracBrowser
for help on using the repository browser.